WEEK: 6

HTML Basics

HTML Basics Video

What other tags do we need to make stuff show up?
<html>
    <head>
        <title>My First Page</title>
    </head>
    <body>
        <h1>My first website</h1>
        <p>My stuff is really important.</p>
        <br />
        How do you like them apples?
    </body>
</html>

What are these tags?

  1. body - this tag surrounds all the tags that are to show up in the web browser window.
  2. h1 - this is a header tag. There are headers 1-6 where h1 is the largest and h6 is the smallest
  3. p - the p tag creates paragraph breaks
  4. br - the br tag creates a simple line break

See the Pen HTML Basics by Michael Cassens (@retrog4m3r) on CodePen.


Previous section:
Next section: