Skip to content


You've never touched HTML before?

That's okay! If you are completely new to HTML, here are the super basics to get you started:

0. HTML!

<this is a tag>

   the stuff that you want affected by that HTML element, goes here.

   Then you close the tag like this:

</this is a tag>

1. HTML Skeleton 🦴

The absolute barebones skeleton of a site:
<html>

     <head>
        </head>

      <body>
        </body>

</html>

Within <body></body>, you'll have your content.

For example:

<p>Each text paragraph goes in a tag like this </p>

2. Very basic styling

2.1 Text:

Bold:     <b> Bold: </b>
Italic:        <i>Italic:</i>
Underline:      <u>Underline:</u>
Strikethrough:     <s>Strikethrough:</s>

Split text onto the next line <br>
like this.

<p>But remember to use these</p>

<p>to space lines like this</p>

2.2 Headers:

This is h1

<h1> This is h1 </h1>

This is h2

<h2> This is h2 </h2>

This is h3

<h3> This is h1 </h3>

2.3 So far:

<html>

     <head>
        </head>

  <body>

    <h1>Title!</h1>

    <p>
         <b>Here</b> is where you can put your content.
    </p>

    <p>
         Another paragraph!
    </p>

  </body>

</html>

Got that? Alright, let's move on!