<article>
<h1> HTML </h1>
<p> So we start off with HTML. You probably all heard about it an saw a little about it? But what is it really about? How does it work? </p>
<p> The most important thing to learn HTML is to just do it, work with it, and you will soon realise that it’s actually pretty simple. </p>
</article>
<html>
</html>
<p>Hello there!</p>
↑
this is the paragraph content
<footer>
<p>This is the first paragraph</p>
<p>
This one also contains <strong>something else!</strong>
</p>
</footer>
<a href="www.google.nl"> Click! </a>
<img src="cat.jpg" width="100" height="100" />
<!DOCTYPE html>
<html>
<head>
<title>My page</title>
</head>
<body>
</body>
</html>