Online Learning Applications for Technical English


Home
Syllabus
Assignments

Instructor



Producing Homepages

Step 1. Writing the HTML skeleton

The basic skeleton for an HTML source file is as follows:



<HTML>

<HEAD>
</HEAD>

<BODY>
</BODY>

</HTML>

Notes

  1. The file type must be text.
  2. Use meaningful names with *.htm or *.html extension. For the bar graph example, let us use the following filename: age_range_bar_graph.html.

[ Back ]