WEEK: 6
Active: September 21st - September 27th
Work Due: September 28th @ 11:59AM

HTML Basics

HTML Basics Video

What other tags do we need to make stuff show up?
<html>
    <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

If you want to try out the code above, click on the link below. It will open an online code editor so you can see what your HTML will look like in a browser.

Click here for an Interactive HTML editor


Previous section:
Next section: