HTML - Help Page

Here you will find my special HTML - Help page. I will update wheen i get time. If you don't find what you are looking for in my pages, you can mail me at:
[email protected]



Basics



Now i will start with showing you how a basic HTML file look like:

<html> <!-- ARCHIVE by FORTUNECITY.ws --> <head> <title> This is were you put in the title of the page </title> </head> <body><script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-47423994-1', 'fortunecity.ws'); ga('send', 'pageview'); </script> <center> <br> <div> <script language="javascript" type="text/javascript" src="http://ad.broadcaststation.net/ads/show_ad.php?width=728&height=90"></script> </div> </center> Here is the body of the page.
Here you insert what you want to be shown on the screen </body> <!-- ARCHIVE by FORTUNECITY.ws --> <center> <div> <br> <script language="javascript" type="text/javascript" src="http://ad.broadcaststation.net/ads/show_ad.php?width=300&height=250&cache=0"></script> <script language="javascript" type="text/javascript" src="http://ad.broadcaststation.net/ads/show_ad.php?width=300&height=250"></script> </div> <br> <br> </center> </html>





Now i will teach you about the basic commands:

Paragraph <p>(insert the text here)</p>
This is the Paragraph command. Use this when you are writing a lot of text.


Break
<br>
This is the Break command. It makes a line break. Use this command to make the site look better. If you take a look on my document source, you will see that I'm using a lot of brakes.


Insert a image
<img src="images/image1.html">
This is the Image command. This example showes the command to put in image1.gif, which lies in the images catalog, into the document.


Font sizes
Heading sizes: <h1>Heading text</h1>
This is the heading command. This is the easiest way to change the size of a heading.
<h1>

This is the largest

</h1>

<h2>

This one is smaller

</h2>

<h3>

This one is smaller

</h3>

<h4>

This one is smaller

</h4>

<h5>
This one is smaller
</h5>

<h6>
This one is the smallest
</h6>



Now that you have lerned som of the basic commands, you should try to make your own HTML page.

Keep looking on my main page after this sign.