0% found this document useful (0 votes)
2 views5 pages

Frame

The document consists of multiple HTML files structured using framesets. It includes a main frame layout with a header and links to various activities, each displayed in a separate frame. The activities have their own content pages detailing specific information.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views5 pages

Frame

The document consists of multiple HTML files structured using framesets. It includes a main frame layout with a header and links to various activities, each displayed in a separate frame. The activities have their own content pages detailing specific information.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

<!

DOCTYPE html>

<html>

<head>

<title>Frames Example</title>

</head>

<frameset rows="20%,80%" frameborder="1">

<frame src="first_page.html" name="First_page">

<frameset cols="10%,90%">

<frame src="second_page.html" name="Second_page">

<frame src="main_page.html" name="Main_page">

</frameset>

</frameset>

</html>
<!DOCTYPE html>

<html>

<head>

<title>First Page</title>

</head>

<body style="background-color: lightgray; text-align: center;">

<h1 style="font-family: Arial; font-size: 34px;">My Laboratory


Activities</h1>

</body>

</html>
<!DOCTYPE html>

<html>

<head>

<title>Second Page</title>

</head>

<body style="background-color: lightblue;">

<a href="activity1.html" target="Main_page">Activity 1</a><br>

<a href="activity2.html" target="Main_page">Activity 2</a><br>

<a href="activity3.html" target="Main_page">Activity 3</a><br>

<a href="activity4.html" target="Main_page">Activity 4</a><br>

<a href="activity5.html" target="Main_page">Activity 5</a>

</body>

</html>
<!DOCTYPE html>

<html>

<head>

<title>Main Page</title>

</head>

<body style="background-color: white;">

<h2>Welcome! Click on an activity to display it here.</h2>

</body>

</html>
<!DOCTYPE html>

<html>

<head>

<title>Activity 1</title>

</head>

<body style="background-color: white;">

<h2>Activity 1 Details</h2>

<p>This is the content of Activity 1.</p>

</body>

</html>

You might also like