DCIT 21 Lab 7
DCIT 21 Lab 7
Title Page
Page1
Page2
Page3
<html>
<head></head>
<body>
<body bgcolor="yellow">
<center><h1> Type the title of your page </h1></center>
</body>
</html>
5. Type the following code (change the link name and use the appropriate
filename base on the existing HTML files in Blog using frames folder) and save
your work as link.htm:
<html>
<head></head>
<body>
<a href="page1.htm" target="FrmeDisp"> Page1 </a><br>
<a href="page2.htm" target="FrmeDisp"> Page2 </a><br>
<a href="page3.htm" target="FrmeDisp"> Page3 </a><br>
</body>
</html>
<html>
<head></head>
<body>
<body bgcolor="green">
</body>
</html>
7. Change the default background color and set your own/favorite color.
8. Here are some of the Frame Tag Attributes that we will use:
<frame> - defines a given frame; required for each frame. No end tag
name defines the name of the frame that is used as a target
src indicates the web page or other file to be displayed
in the frame
<html>
<head>
<frameset rows="20%,80%">
<frame src="head.htm">
<frameset cols="30%,70%">
<frame src="link.htm">
<frame src="background.htm" name="FrmeDisp">
</frameset>
</frameset>
</head>
</html>
10. (You are allowed to change the style of the frame/frameset given.)