HTML Tag Reference Sheet (Code Club)

To assist with the pupils attending Code Club I’ve knocked up a quick HTML tag reference sheet for the basic tags used in the first few projects.

 

HTML Tags

 

HTML stands for Hyper Text Markup Language.

All the tags have and opening tag <> and a closing tag </>

 

 

<head>            </head>

The <head> tag is where we link to our CSS

 

 

<body>            </body>

The <body> tag is where we put all the text and images we want to show on our web page.

 

 

<p>                  </p>

The <p> tag is for paragraphs and we put text into them.

 

 

<i>                   <./i>

The <i> tag puts words into italic writing.

 

 

<b>                  </b>

The <b> tag puts words into bold writing.

 

 

<u>                  </u>

The <u> tag underlines words.

 

 

              

The <div> tag allows use to separate items into groups.

 

 

<h1>                </h1>

The <h1> tag creates a heading which stands out more. <h2>, <h3>, <h4>,<h5>,<h6> are also heading tags.

 

 

<img src= “”>

The <img> tag does not have an ending tag. It allows for images to be put on our web page.