Assignment #4

EDUC565 - HTML Essentials

Web page development software has come a long way in the last ten years. It is now possible to create a web page without knowing anything about HTML. Unfortunately, the pages created in this manner look like it. Even the best HTML editor will need a little help once in a while, and that is why every web author needs to know the basics of HTML.

Here are the HTML tags that you need to know how to use. The following pages give examples of each.


Hyper Link <a href="http://www.findlay.edu">University of Findlay</a>
Mail To Link <a href="mailto:trusty@findlay.edu">trusty@findlay.edu</a>
Paragraph <p></p>
Line Brake <br>
Tables <table><tr><td></td><td></td></tr>
<tr><td></td><td></td></tr></table>
Non-Break Space &nbsp;
Bold <strong>bold</strong>
Italic <em>italics</em>
Forms <form name="MyForm" method="post" action="process.htm">
</form>
Images <img src="orange_line.gif" width="640" height="2">
Font (size and font face) <font size="2" face="Verdana, Arial, Helvetica, sans-serif">Normal Text</font>

Jump To Top What Is HTML
Home HTML Rules Breaks Bold & Italic Tables Hyperlinks Fonts Images Extra Items