Web Page Basics (HTML)

Web Programming References ...

  1. You should learn the basic HTML tags.  Even if you use a good GUI WYSIWYG HTML editor or word processor, you will sometimes need to make changes that are only possible at the code level.
  2. Debug
  3. You must get your own graphics files:


HTML Elements
(Hypertext Markup Language)


<html>
   <head>
        <title></title>
   </head>
<body bgcolor="#FFFFFF" background="image1.jpg">

<h1> <h2> <h3><h4><h5><h6>
<p>
<b><i><u>bold & italicized & underlined</u></i></b>     (Warning - You must never use underlining!!)
<pre></pre>
<br>
<hr>
<ul> type="square/circle/disc"
<ol> type="1/A/a/I/i"
<li>

<center></center>

<a href="protocol://url">string</a>
<a href="http://dc1.dawsoncollege.qc.ca/~a999999/">Ima's Homepage</a>
<a href="mailto:a999999@dc1.dawsoncollege.qc.ca">Mail me, svp</a>
<img  src="filename.ext" width="200" height="200" align=position title="string">
<a href="protocol://url"><img  src="filename.ext">Click on my picture</a>

<!-- This is a comment that doesn't appear in the browser.  -->

</body>
</html>