Frank's Cyber Cafe

Search

Go to content

Basic HTML

Advanced User > Projects

NB: Don't use symbol's in IMAGE NAMES or PRODUCT/MAIL FORMS with X5


This s just a basic introduction to HTML! These snippets of code are what you are most likely to use on the internet. You can also apply this HTML to your Header & Footer Graphics in X5...... there are a few more pieces of code incorporating the [DATE][HOUR] in X5 - RTM.
You will notice all the pieces of HTML code start with an instruction example: IMAGE <img> and is finished off with a closure tag FORWARD SLASH/IMAGE </img> The only one that doesn't need a closure tag is the BREAK <br> tag.

HTML 5
This is an on going project and will change the way browsers work in the near future. Browsers are
NOW supporting HTML 5! They are introducing this code gradually over the certain development stages of the project. (The <br> tag in HTML 5 will be <br /> and the video tags will be changing also) More info.....

HTML Code

HTML Page

<title>Hello Everyone</title>This Title goes into your tab of the browser (Above)

<h1>This is the largest heading text</h1> Usually the title to the page

<h2>This is a heading text</h2>

<p>This is normal paragraph text</p>

<b>This is bold text</b>

<i>This is Italics text</i>

<u>This is underlined text</u>

<font color="0000FF">This is coloured text</font>

*************************************

This is a linked image: <img src="http://www.example.com/title1.jpg"></img>


<a href="mailto:frank@websitex5.info">This is a text link to a mail box</a>


This image is linked to the mailbox:
<a href="mailto:frank@websitex5.info"><img src="http://www.example.com/title1.jpg"></a>


This image is linked to the mailbox without a border:
<a href="mailto:frank@websitex5.info"><img src="http://www.example.com/title1.jpg" border="0"></a>


This image is linked to a webpage without a border:
<a href="http://www.websitex5.info"><img src="http://www.example.com/title1.jpg" border="0"></a>



If you notice this in the code its a break(------<br>------)in the line.


These are spaces: From here &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;to here

And this is a copyright symbol:
&copy frank@websitex5.info

Hello EveryoneThis Title goes into your tab of the browser (Above)

This is the largest heading text





This is a heading text


This is normal paragraph text


This is bold text

This is Italics text

This is underlined text

This is coloured text

****************************************************************

This is a linked image:



This is a text link to a mail box


This image is linked to the mailbox



This image is linked to the mailbox without a border




This image is linked to a webpage without a border



If you notice this in the code its a break(--------
--------)in the line.


These are spaces: From here                to here


And this is a copyright symbol:
© frank@websitex5.info
frank@websitex5.info

Back to content | Back to main menu