© University of Kent - Contact | Feedback | Legal | FOI | Cookies
HTML: The language used to author web pages
You are required to know a basic level of HTML, enough to author a simple web page. The following lists provides commonly used constructs.
Headings <h1>Large Heading</h1> <h2>Medium Heading...</h2> <h3>Small Heading...</h3> |
Paragraphs <p>This is the paragraph content ... </p> <p>This is another paragraph ... </p> |
Bulleted List <ul> <li> item text ... </li> <li> item text ... </li> </ul> |
Definition List <dl> <dt> label text ...</dt> <dd> content ...</dd> <dt> label text ...</dt> <dd> content ... </dd> </dl> |
Comments <-- A comment will not be visible on a web page. --> |
Tables How to build tables using HTML (provided by Netscape) |
Images <img src="myPhoto.jpg" alt="Portrait photo of Joe Bloggs"> <img src="UoK/compSciEntrance.jpg" alt="Photo of the main entrance to the Computer Science building"> <img src="http://www.cs.kent.ac.uk/images/spacer.gif" alt=" "> |
|
Links
|
HTML tutorials
If you are interested in knowing more about HTML try one of these tutorials:
If you can recommend any other good tutorials which could be listed here, please notify cs-webmaster.
Validate your HTML
Your web pages should be verified by a validation checker to make sure that your web page conforms to the HTML standard.