| ::Html Scripting:: | ||||||||||
| Html scripting stands for Hyper text mark-up language and its the code which most or all websites are written in. All commands are written in <> to start a command place the command in the <> and to end a commands place a / in the <> with the command. Eg </Html>. To start off a script you need to place <Html> in the script area. To end a script you need to place </Html> at the end off the script. | ||||||||||
| ::Basic Html Commands:: | ||||||||||
| <b> : makes the text bold <br> :inserts line break <p> : inserts paragraph <i> : makes the writting italics <u> : underlines the text <ul> : starts bullets <ol> : starts numbers <hr width={width size}> or <hr width={width percent}>: this makes a horizontal line. <hr width={width size} size={hight size}> : this makes a High and long line. <font size = {1 to 7}> Text here </font>: this here can change the font size <font color="{colour}"> : this changes the fonts colour <body bgcolor="colour"> :this sets the backgrounds colour <img src={locatain of picture}> : loads up a picture <a href="{insert website here}"> : makes a website link <a href="mailto{email}"> : this links up a email |
||||||||||
| <table> <tr> - start table row <td> - start table data cell type text here </td> <td> starts a second table data cell type text here </td> </tr> </table> This here creates a table which is 1 colum long and contains 2 cells. <table> commands starts the table and </table> ends the table command. <embed src="the music file" width={its width} height={its height}> </noembed> This here creates a music player on your site. <bgsound src="{music player file}" loop=infinite> This creates musci that keeps running in the back ground. |
||||||||||