HTML Basics

PreviousNext

Basic Tags

EXAMPLE A - Unformatted HTML source

        <HTML>

        <HEAD> 

        <TITLE>This is the Title your Browser will use</TITLE> 

        </HEAD> 

        <BODY> 

        <H1>This will be the main heading</H1> 

        <H2>This will be a smaller heading</H2> 

        <P>This is a new paragraph and the start of the text</P> 

        <H2>Another level 2 heading</H2> 

        <P>Another paragraph and text</P> 

        </BODY> 

        </HTML> 

Let's take a look at the formatted code

PreviousNext

Agenda

HTM040