<html>
<head>
<TITLE>A Basic HTML Example</TITLE>
</head>
<body>
<H1>My HTML Page</H1>
<P>Here is a paragraph!</P>
<P>And this is another paragraph.</P>
<H1> = Headings have 6 levels, these are numbered 1 up to 6.
</body>
</html>
Everything here in between the < and > are called Tags.
This is a Tag: <P> A Paragraph Tag and </P> is the (corresponding) End Tag, end tags have a / within them.
<HTML> = Tells the Browser that HTML code is in this file.
<HEAD> = Is the part that will contain the Title.
<TITLE> = Title which is normally at the very top of the page.
</HEAD> = This is the End Tag for <Head>.
<BODY> = Contains the content of your document, note here <BODY> and </BODY> are in the example above.
<P> = Paragraphs.
Here is how you can center a paragraph.
<body>
<center>
<p>This is a centered </p>
</center>
</body>
This is a centered