|
|
Some important tags - see examples
- <html< - outermost element for entire document
- <head< - Contains information about the document
- <title<Appears in browser window title bar</title<
- <body< - Everything that will be displayed follows this tag
- Comment tags
- <!-- Browser will ignore anything in tag --<
- Text formatting tags
- <h1 align="center"<Headings 1-6 </h1<
- <strong<Bold </strong< and <em<Italics</em<
- <p<Paragraphs of text with common formatting</p<
Separate lines
- <br<
with line breaks
- List tags - unordered (bullets) or ordered (numbers)
- <ul<
<li<
- First item in list - browser will bullet
-
- <li<Next item in list - browser will bullet
- </ul<
|
|
|