HTML Project

This describes what you have to write in HTML. Use Notepad++ to write the HTML and use a browser to view it.
Use w3schools.com as a reference.

See class instructions on how to hand this in

First two lines are always <!Doctype HTML> <HTML>
Last two lines are always </BODY> </HTML>

You can use these attributes in <body>: link, text, vlink, bgcolor.
"background" will put a background image on the webpage,
Note: later on all of these <body> attributes will be removed and done in CSS

Use the following tags

They can be anywhere in your document

  1. H1, H2, or H3
  2. p
  3. br
  4. b or strong
  5. i or em
  6. font (change the colour/size/font of some text)
  7. make a list of something (either using <ul> or <ol>)
  8. pre
  9. make a table
  10. a multiline comment
  11. hr
  12. img
  13. use any two escape codes. (e.g. for nonbreaking space, <, >, & →)

 

Do at least one of these other things:

Validate your HTML here or use Firefox (portable?) to view the source code. Errors are in RED.