Basic HTML Tutorials

January 17, 2008

The following list is really very basic html code, but it should suffice to help you to get started if you are a complete novice, but I will be adding more at a later stage. 

<html> ALL HTML CODE GOES HERE </html>

Basic Page Content Should Look Like This

<html><head>YOUR HEADLINE TEXT</head><body> BODY TEXT GOES HERE between the html ‘body’ code </body></html>

New Paragraph: <p>
Line Break: <br>
New Paragraph: <p>
Underline: <u>

Italics: <i>
Centre text: <centre>
Left aligning text: <p align=”left”>
Right aligning text: <p align=”right”>
Change text colour: <font color=”red”>
Change font size: <font size=”3″>

Hyperlink To A New Page Or Website

<a href=”http://www.thepage.com”>name of link</a> (shown as: Name of link)


To Have The Link Open In A New Browser Window

<a href=”http://www.anysite.com” mce_href=”http://www.anysite.com”target=”_blank”>name of link</a>

Comments

Got something to say?