Directions: Create a library home page that contains links to internet sites.
- Create a new folder called library.
- Create an index.html library homepage.
- Create library links on in the main body of the homepage.
- Create links to at least five news sites.
- Create links to at least five sites about your favorite hobby.
- Create links to at least five sites about your future job.
- Create a back button in the right hand menu bar.
- Add the html code below to the main page of you portfolio. This will go inside the first set of td's.
<html>
<body>
<center>
<table width=660 border=1>
<tr>
<td width=540 valign=top>
<center>
<font size="+2"><b>Library</b></font>
<table width=520 border=1>
<tr>
<td valign=top>
News
<br><a href="http://www.cnn.com">CNN</a>
</td>
<td valign=top>
Hobbies
</td>
<td valign=top>
Career
</td>
</tr>
</table>
</center>
</td>
<td width=120 valign=top>
<a href="../index.html">Back</a>
</td>
</tr>
</table>
</center>
</body>
</html>
.