Link Start End End Tag
Header <h1> </h1>
Paragraphs <p> </p>
Break <br> </br>
Links <a href="link"> </a>
Images <img>
Lines <hr>
Body <body> </bodya>
HTML <html> </html>
Head <head> </head>
Title <title> </title>
Blocks <div> </div>
Tables <th><table><tr><td> </th></table></tr></td>
Lists <ol><ul><li> </ol></ul></li>
Comments <!--; -->

HTML

Description

HTML is the main document type that we will be using this unit and the syntax basically encompasses the entire page

Syntax

start: <html>

Add everything you need in your page in between these two tags

end: </html>

Example

This entire page!

Outcome

Basically the entire page

Main Head

Description

This is the main head and it has stuff in it the controls the entire rest of th epage like colors and titles

Syntax

start: <head>

Between the start and end, add different titles, fonts, color modifiers, etc... if you don't want to put them in a CSS file.

end: </head>

Example

Sets the title of the page

Outcome

Whatever it looks like

Title

Description

Sets the title of the page so that it can be referenced later.

Syntax

start: <title>

Whatever you want the title to be

end: </title>

Example

Naming your page based on its contents

Outcome

N/A

Body

Description

The body is what encompasses the entire code of the page.

Syntax

start: <body>

EVERYTHING

end: </body>

Example

Making a body about monkeys with a blue background

Outcome

Page Appearance

Heading

Description

Adds nice, large(or small) text that is bolded which can be used to separate sections or make something easier to locate.

Syntax

start:<h#>

Name of heading(# is the size)

end:</h#>

Example

The above text is a heading

Outcome

This is a smaller heading

Paragraph

Description

Most of the text in an html page

Syntax

start: <p>

paragraph text

end: </p>

Example

<p>This is an example paragraph</p>

Outcome

This is an example paragraph

Break

Description

Can break or enter the text in a paragraph

Syntax

<br>

Example

This is an <br> example paragraph

Display

This is an
example paragraph

Line

Description

Creates a line that can be used for splitting off parts

Syntax

<hr>

Example

<hr>This will be crossed out

Outcome


This is now crossed out

Comments

Description

Can be used in the code to make note of things

Syntax

<!-- and -->

Example

<!This is the comments part-->

Outcome

Links

Description

these add hyperlinks to other pages or parts of the page.

Syntax

start: <a href="Desired-Link">

What the link should look like

end: </a>

Example

<a href="google.com">Google</a>

Outcome

Google

Images

Description

Puts images into the page

Syntax

<img>

Example

<img src=https://pbs.twimg.com/profile_images/839721704163155970/LI_TRk1z_400x400.jpg%gt;

Outcome

Lists

Description

Creates a list of objects

Syntax

start: <ol><ul><li>

end: </ol></ul></li>

Example

Cat Breeds but its a List

<ul style="list-style-type:disc"> <li>Tabby</li> <li>Siamese</li> <li>Bengal</li> <li>Scottish Fold</li> </ul> </p>

Outcome

Cat Breeds but its a List

Tables

Description

Creates a table of sorted informtaion

Syntax

start:<th><table><tr><td>

end: </th></table></tr></td>>/p>

Example

See table below

Outcome

See table below

Blocks

Description

The officially divide the page into designated parts

Syntax

<div>

</div>

Example

Dividing a part to style it only

Outcome

N/A