Thursday, 10 February 2011

Chapter 2 - Basics of html

Chapter 2 contained most of the basic tags within the language of html and showed you how to use them effectively.



Here is the html which I wrote for the website:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
 <head><title>Chapter 1</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 </head>
 <body>
 
  <h1>Chapter 2 website</h1>
  This website was created to demostrate the teqniques which were used in chapter one this teqniques included:
  <dl>
   <dt>Definition<dt>
    <dd>This is an example</dd>
   <dt>Lists</dt>
    <dd>This is an example</dd>
  
  </dl>
 
  <p>
 
  <ol type="A">
   <li>Ordered</li>
   <li>List</li>
  </ol>
 
  <p>

  <ul type="square">
   <li>Un-</li>
   <li>Ordered</li>
   <li>List</li>
  </ul>
 
  <p>
 
  <b>Physical style elements</b>
 
  <p>
 
  <a href="http://google.com%22%3elinks%3c/a>
 
  <p>
 
 
 </body>
</html>