The issues that this experiment treats are how create the appropriate column sizes and spacing between columns to produce an attractive appearance (given what we have available to us at this point).
The first goal is to make this document look like this. The features are:
<table summary=""> <tr><td><a href="index.html">home</a></td></tr> <tr><td><b>Web Design</b></td></tr> <tr><td><a href="moves.html">Favorite Movies</a></td></tr> <tr><td><a href="hobbies.html">My Hobbies</a></td></tr> <tr><td><a href="songs.html">Top 10 Songs</a></td></tr> </table>
<h3>HTML</h3>
<h3>Lists</h3>
<h3>Graphical Images</h3>
<h3>HTML</h3> HTML stands for <b>H</b>yper<b>T</b>ext <b>M</b>arkup <b>L</b>anguage. It was invented in 1989 by Tim Berns-Lee. <p> <em>Hypertext</em> refers to the ability to move among information in many files in non-linear way by activing <em>links</em> to other files. </p>
<h3>Lists</h3> Lists are ways of organizing information in a hierarchical way according to a sequence of elements (numbered or not) along with their subsequences. HTML lists are usually thought of as combinations of the elements: <tt>ul</tt> (unordered list), <tt>ol</tt> (ordered list), and <tt>li</tt> (list item).
<h3>Graphical Images</h3> Here is an example: <p> <img width="120px" height="73px" src="btrfly.jpg" /> </p> The HTML content is: <p> <tt><img width="120px" height="73px" src="btrfly.jpg" /></tt> </p>
style="background-color:lavender; border: solid 1px red"By doing so, we create the final product.