Resources
Main html tags and components
-
<TAG>
-
<TAG attribute = "value" otherattribute = "othervalue">
-
<br>
-
<meta charset="utf-8">
-
<TAG />
-
<TAG attribute = "value" otherattribute = "othervalue" />
-
<img src="url/of/image.png" alt="This is a description of the image" width="500" height="500" />
-
<TAG>
something?
</TAG>
-
<TAG attribute = "value" otherattribute = "value">
something?
</TAG>
-
<a
href="
url of the page or site
">
Click to open hyperlink
</a>
-
<a href="
url of the page or site"
target="_blank" rel="noopener noreferrer"
>
Click to open hyperlink in a new window or tab
</a>
-
<!--
a comment
-->
Special HTML characters
<, >, &, ', "
<, >, &, &apos, "
Start of an HTML5 document
<!DOCTYPE html>