html
head & title
body
Link
Background Music
Images
Table
Form
Text
Font
Horizontale Line
Marquee
General
List
Frames
The meaning of option : the option can be added to the main code so more thinks are possible but you don't need them always.
| Code | What the code does | Example | End Code |
<html> | You start and end your homepage with this | Sorry no example | </html> |
<meta name="Author" content="place Author here"> | A meta tag for you homepage | Sorry no example | none |
<meta name="Keywords content="place,Keywords,here,> | A meta tag for you homepage | Sorry no example | none |
| Code | What the code does | Example | End Code |
<head> |
Start the head of the html file | Sorry no example | </head> |
<title> |
After <head> comes <title> place the name between them |
Sorry no example | </title> |
| Code | What the code does | Example | End Code |
<body> |
You start the text lay-out of your site with this | Sorry no example | </body> |
| Option | Option | Option | Option |
<bgcolor=""> |
Gives your background some color.place colornames or hex. code | Sorry no example | </body> |
<background=""> |
Use a image for your background | Sorry no example | </body> |
<vlink"=""> |
Gives your visit links some color.place colornames or hex. code | Sorry no example | </body> |
<link=""> |
Gives your non-visit links some color.place colornames or hex. code | Sorry no example | </body> |
<text=""> |
Gives your text between<text=""> and </body> some color.place colornames or hex. code |
Sorry no example | </body> |
| Code | What the code does | Example | End Code |
<a href=""> |
place a document or url between the "" and after the > a text | example | </a> |
| Option | Option | Option | Option |
<target="blank"> |
Open a document in a new screen | example | </a> |
<a href="#Example"> |
With this code you can jump within the same html document | Example | </a> |
| Extra | Extra | Extra | Extra |
<a name="Example"> |
This code is needed without changes to use with <a href="#Example"> |
Sorry no example | </a> |
| Code | What the code does | Example | End Code |
<bgsound src=""> |
Insert some background music on your side | Sorry no example | none |
| Option | Option | Option | Option |
<autostart="true" > |
Autostart the background music | Sorry no example | none |
<hidden="true"> |
Some browsers show a music player on your homepage this code makes sure there is no player on your homepage | Sorry no example | none |
<loop=""> |
With this code you can set on howmany times the music will play.For Infinite type loop="infinite" | Sorry no example | none |
| Code | What the code does | Example | End Code |
<table> |
Making a Table | Sorry no example | </table> |
| Option | Option | Option | Option |
<border=2> |
Make a tabel with a border | Sorry no example | </table> |
<table bordercolor=0000CC> |
Gives your border some color.place colornames or hex. code | Sorry no example | </table> |
<bgcolor=""> |
Only gives your table a background color | Sorry no example | </table> |
<height=""> |
Give your table height | Sorry no example | </table> |
<width=""> |
Gives your table width | Sorry no example | </table> |
<tr> |
Begins a new line in your table | Sorry no example | </tr> |
<td> |
Gives you every time you use this code one cel more | Sorry no example | </td> |
| Extra | Extra | Extra | Extra |
<td width=150> |
Make the width of one cel bigger or smaller | Sorry no example | </td> |
<caption> |
Insert a text above your table | Sorry no example | </caption> |
| Code | What the code does | Example | End Code |
<a href="mailto:"> |
Make a link so that people can e-mail you | Example | </a> |
| Option | Option | Option | Option |
<a href="mailto:?subject="> |
Make a link so that people can e-mail you and add the subject | Example | </a> |
<a href="mailto:?subject=&body="> |
Make a link so that people can e-mail you and add the subject and body | Example | </a> |
| Extra | Extra | Extra | Extra |
<href="mailto:"><img src=""> |
Image with e-mail link | ![]() |
</a> |
| Code | What the code does | Example | End Code |
<form> |
Begin your form with this | Sorry no example | </form> |
<form method="post" action="mailto:"> |
With this you don't need any CGI script the form will be posted to you as an *.Att file.Use notepad to see what the information is | Sorry no example | </form> |
| Insert | Insert | Insert | Insert |
<textarea> |
Make a text area | </textarea> | |
<textarea rows=3 cols=15> |
Make a text area with rows and colums | </textarea> | |
<input type="text"> |
Make single line text box | none | |
<input type="text" value=""> |
Make single line text box and have a text in it | none | |
<input type="text" maxlength=""> |
Make single line text box and gives maximum type of text | non | |
<select> |
Make a selection bar | </select> | |
<select name=""> |
Make a selection bar and give it a name for using in a database | </select> | |
<select name=""><option value=""> |
Selection bar with choices | </select> | |
<select name="" size=""><option value="" multiple> |
Selection bar with choices and more shows more then one choice | </select> | |
<input type="checkbox" name=""> |
Make checkbox for more then one option | Example | none |
<input type="radio" name=""> |
Make radiobox for one option.Make sure the name="" is the same by every radiobox | Yes No | none |
<input type="reset" value=""> |
Makes your form completly empty | none | |
<input type="submit" value=""> |
Submit Form | none | |
<input type="image" src=""> |
Button made of an image | none |
| Code | What the code does | Example | End Code |
<h1> |
Makes a headline (Biggest) | Example |
</h1> |
<h2> |
Makes a headline | Example |
</h2> |
<h3> |
Makes a headline | Example |
</h3> |
<h4> |
Makes a headline | Example |
</h4> |
<h5> |
Makes a headline | Example |
</h5> |
<h6> |
Makes a headline (Smallest) | Example |
</h6> |
<b> |
Makes text bold | Example | </b> |
<I> |
Makes text italic | Example | </i> |
<u> |
Underlines text | Example | </u> |
<s> |
Strikethru text | </s> | |
<sup> |
Highers text | Example Example | </sup> |
<sub> |
Lowers text | Example Example | </sub> |
<tt> |
Text made with a typewriter | Example | </tt> |
<strong> |
Makes text appear strong | Example | </strong> |
<em> |
Gives the same style as : <i> ... </i> | Example | </em> |
<blockquote> |
Quote a text | Example |
</blockquote> |
<pre> |
Makes the text with space | Example |
</pre> |
<br> |
Start a new line | Example |
none |
<big> |
Big text | Example | </big> |
<small> |
Small text | Example | </small> |
<blink> |
Let text blink.Only for netscape users with internet explore you don't see anything | </blink> |
| Code | What the code does | Example | End Code |
<font> |
Starts fonts | Example | </font> |
| Option | Option | Option | Option |
<font face=""> |
place a font name between the "" for example bv. symbol | Example | </font> |
<font color=CC00000> |
Gives your text color | Example | </font> |
<font size=""> |
Make your text change in size | Example | </font> |
| Code | What the code does | Example | End Code |
<hr width=""> |
Horizontal line that can be changed from 1% to "10"0% or more | none | |
<hr size=""> |
Make the horizontal line smaller or bigger in size | none | |
<hr noshade> |
Horizontal line without shade | none | |
<hr> |
Horizontal line with shade | none |
| Code | What the code does | Example | End Code |
<marquee> |
Shows scrolling text | </marquee> | |
| Option | Option | Option | Option |
<behavior=""> |
Adjust the behavior of marquee with : scroll,slide or alternate | </marquee> | |
<direction=""> |
Makes sure you're text scrolls from right to left (left) or from left to right (right) | </marquee> | |
<loop=""> |
Adjust on howmany times the scrolling text comes by | </marquee> | |
<bgcolor=""> |
Gives the background of the scrolling text some color.place colornames or hex. code | </marquee> |
| Code | What the code does | Example | End Code |
| #000000 | With this hex. code from #000000 to #FFFFFF you can make any color.Remember hex. code works from 0 to 9 and from a to f (0123456789abcdef) | Sorry no example | #FFFFFF |
<cite> |
Almost the same as blackquote | Example | </cite> |
| Make spaces in your text (same as spacebar) | Example | none | |
<xmp> |
Show html code on your homepage | Geen voorbeeld beschikbaar | </xmp> |
<center> |
This centers images or text or table in the center of the homepage | </center> | |
<p align="left"> |
Makes text be on the left of your homepage | Example |
</p> |
<p align="center"> |
Makes text be on the center of your homepage | Voorbeeld |
</p> |
<p align="right"> |
Makes text be on the right of your homepage | Voorbeeld |
</p> |
<code> |
Show html code on your homepage with < |
<Example> | </code> |
| Code | What the code does | Example | End Code |
<ol> |
Start with this code for making a list | Sorry no example | </ol> |
<li> |
Sort a list | Sorry no example | none |
<ul> |
Leave List onsorted | Sorry no example | </ul> |
| Code | What the code does | Example | End Code |
<frameset> |
Start a html documents in frames | Sorry no example | </frameset> |
| Option | Option | Option | Option |
<rows=" %, %"> |
place html documents in rows | Sorry no example | </frameset> |
<cols=" %, %"> |
place html documents in colums | Sorry no example | </frameset> |
<noresize> |
Makes sure that frames can't be moved | Sorry no example | </frameset> |
<scrolling="no"> |
Makes sure that you can't scroll on your homepage | Sorry no example | </frameset> |
<frame src="" name=""> |
Name is the name of the frame and src is the file that will be loaded in that frame | Sorry no example | </frameset> |
| Extra | Extra | Extra | Extra |
<a href="" target=""> |
For loading files from one frame to an other make sure the target name is the same as the name of the frame | Sorry no example | </a> |
