HTML Home

HTML Part 2

Let's begin part 2 of our HTML discussion with a review. HTML elements are typically comprised of two tags. Tags are like containers for content. These tags surround the content they describe. Opening tags start with a less-than symbol, the element name and then the greater-than symbol. Closing tags start with a less-than symbol, then a slash, then the element name and then the greater-than symbol.

Summary

Basic Elements

In the previous section, we learned about the html, head, title, body, headings level 1-6, ordered and unordered lists, and p tags. Let's review these individually.

Basic Elements Shell

 <!DOCTYPE html>
 <html>
  <head>
    <title>  <title>
  </head>
  <body>
  </body>
 </html>
Next: Review of other useful element types!