Build 10 HTML pages by using a plain text editor such as Notepad or Wordpad.
No HTML editors like Bootstrap are allowed to be used.
All HTML files and images should be under a folder and no sub-folders are used.
The HTML link destinations should be direct instead of complete or relative; for example, you should use
<a href="5.html">Search books</a>
instead of
<a href="file:///C:/260/Ex1/5.html">Search books</a>
If video or audio clips are used, the complete paths have to be used; for example, you should use
<object data="http://undcemcs01.und.edu/~wen.chen.hu/course/260/exercise/1/intro.swf"
height="90" width="90"></object>
instead of
<object data="intro.swf" height="90" width="90"></object>
For images, either you can use direct paths if the images have been uploaded, or complete paths; for example, you could use
<img src="5.jpg" />
if the image 5.jpg
has been uploaded, instead of
<img src="images/5.jpg" />