Create a web page that includes a title and three frames displaying the following:
1.Top frame: a web page heading with a short explanation text.
2.Bottom left frame: a navigation menu with at least three links, each one opening in the bottom right frame.
3.Bottom right frame: displaying the page selected from the navigation menu.
This is the code I have so far
<html>
<body>
<title> Mike Kostin's Gallery Page</title>
<h3><head> Welcome to Mike Kostin's Gallery</head></h3>
<p>
These are pictures that I like. You can click on each one to get a
bigger image in a separate window.
</p>
<table border="10" cellspacing="15">
<tr>
<td><a href="http://ui32.gamespot.com/1887/marines.jpg"
target="_blank">
<img border = 0 src="http://ui32.gamespot.com/1887/marines.jpg"
width="200" height="200"> <center>Marines</center></td>
<td><a href="http://www.forscom.army.mil/reeng/1-G8/Logo%
20Template%20-%20Army%20Strong%201.jpg" target="_blank">
<img border = 0 src="http://www.forscom.army.mil/reeng/1-G8/Logo%
20Template%20-%20Army%20Strong%201.jpg" width="200"
height="200"><center>Army</center></td>
</tr>
<tr>
<td><a href="http://scrapetv.com/News/News%
20Pages/usa/Images/navy-seals.jpg" target="_blank">
<img border = 0 src="http://scrapetv.com/News/News%
20Pages/usa/Images/navy-seals.jpg" width="200"
height="200"><Center>Navy Seals</center></td>
<td><a
href="http://z.about.com/d/miami/1/7/X/4/coast_guard_02.jpg"
target="_blank">
<img border = 0
src="http://z.about.com/d/miami/1/7/X/4/coast_guard_02.jpg"
width="200" height="200"><center>Coast Guard</center>
</td>
</tr>
</table>
<p><i>I hope you enjoyed my image gallery</p></i>
</body>
</html>
1.Top frame: a web page heading with a short explanation text.
2.Bottom left frame: a navigation menu with at least three links, each one opening in the bottom right frame.
3.Bottom right frame: displaying the page selected from the navigation menu.
This is the code I have so far
<html>
<body>
<title> Mike Kostin's Gallery Page</title>
<h3><head> Welcome to Mike Kostin's Gallery</head></h3>
<p>
These are pictures that I like. You can click on each one to get a
bigger image in a separate window.
</p>
<table border="10" cellspacing="15">
<tr>
<td><a href="http://ui32.gamespot.com/1887/marines.jpg"
target="_blank">
<img border = 0 src="http://ui32.gamespot.com/1887/marines.jpg"
width="200" height="200"> <center>Marines</center></td>
<td><a href="http://www.forscom.army.mil/reeng/1-G8/Logo%
20Template%20-%20Army%20Strong%201.jpg" target="_blank">
<img border = 0 src="http://www.forscom.army.mil/reeng/1-G8/Logo%
20Template%20-%20Army%20Strong%201.jpg" width="200"
height="200"><center>Army</center></td>
</tr>
<tr>
<td><a href="http://scrapetv.com/News/News%
20Pages/usa/Images/navy-seals.jpg" target="_blank">
<img border = 0 src="http://scrapetv.com/News/News%
20Pages/usa/Images/navy-seals.jpg" width="200"
height="200"><Center>Navy Seals</center></td>
<td><a
href="http://z.about.com/d/miami/1/7/X/4/coast_guard_02.jpg"
target="_blank">
<img border = 0
src="http://z.about.com/d/miami/1/7/X/4/coast_guard_02.jpg"
width="200" height="200"><center>Coast Guard</center>
</td>
</tr>
</table>
<p><i>I hope you enjoyed my image gallery</p></i>
</body>
</html>