Below is an automatically updated list of the entire HTML Codes Tutorial here at iLoveTheCode.
A couple of things to remember:
-When writing your code, most of the time, HTML syntax is simply this: for each opening tag there is a matching closing tag that begins with </
---A few exceptions to this are form elements like <option value=2>, image tags <img src=iltc.jpg>, and line returns <br>.
These are the basic tags that every HTML page needs.
-html
-head
-title
-body
<html><head>
<title>My Great Page</title>
</head>
<body>
Page text goes here.
</body>
</html>