HTML Syntax
Basic syntax rules
HTML code is arranged so that elements are nested.
<html>
<head>
<title>
Example Page
</title>
</head>
<body>
Example Page Contents
</body>
</html>
As you can see from the example, many elements need a closing tag, which is signified by a "/" character. You cannot have two ele...