H=Hyper
T=Text
M=MarkUp
L=Language
HTML=HyperText MarkUp Language.
Html uses tags. These are two examples of tags that may be familiar to you:
<head> </head>
<body> </body>
The head contains things that are not visible, it stores things like variables and the page title. The body contains all things that are visible, from text to backgrounds and even to password boxes and text boxes.
Some cool codes:
Bold in html: <b> </b>
Italic in html: <i> </i>
Underlined in html: <u> </u>
Enter: <br>
Line: <hr>
Password box: (this isnt actually a password, just a box to enter one.)
CODE
Enter Password: <input type = "password" size="10">
Tick boxes:
CODE
<div align="center">
<input type = "checkbox" name ="option1" value="monkey"> monkey!<br>
<input type = "checkbox" name="option2" value="cheddar"> cheddar!<br>
</div>
Those are just some examples. To learn more about html, search on Google for tutorials and more examples.
Does anybody else know more codes, to save people from searching all over the web?
discuss this topic to forum
