Description:
HTML is used to give websites its structure.
You can set tags for headlines, links, paragraphs, images and much more.
List of basic tags:
<h1> headline<p> paragraph, text<img> image<a> link<header> header section<footer> footer section
Example:
Show "Hello World".
<html>
<body>
<p>Hello World</p>
</body>
</html>
Example:
Show a image.
<html>
<body>
<img src="image.png" />
</body>
</html>
Example:
Create a link.
<html>
<body>
<a href="page2.html">Go to Page 2</a>
</body>
</html>