| HTML Syntax |
|
|
|
| Written by Andrew Lechlak |
| Monday, 13 July 2009 19:45 |
|
This is the basic layout for an html page. It should give enough information here to be able to create a simple page with some text. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>Title Here</TITLE> </HEAD> <BODY> <H1>Big Heading</H1> <P>ParagraphP> <UL> <!--Commenting that it is an un-ordered list --> <LI>List Item </LI> <LI>List Item </LI> </UL> <OL> <!--Commenting that it is an ordered list --> <LI>List Item </LI> <LI>List Item </LI> </OL> <hr> <!—Horizontal Rule aka a Line on the Screen --> </BODY> </HTML> This will give you a very basic look, but it is enough that if you really wanted to you could put it up online. These are the backbones for any basic page. When starting out it is alright to use tags that Bold, Italicize, or Underline, but eventually you will want to do that inside of your stylesheet, CSS. |
| Last Updated on Monday, 13 July 2009 21:01 |




