Frameset Page Load header.html here Load menu.html Here Load main.html here Page
ID: 3703311 • Letter: F
Question
Frameset Page Load header.html here Load menu.html Here Load main.html here Page 1 Page 2 Page 3 Create a frameset page (call it framset2.html). The page should have a header section. Load header.html into this section. Create a left section and load menu.html into this section. Create a main section to the right of the menu section and load main.html into this main section The menu.html page should have links to page1.html, page2.html, and page3.html. When the user clicks on any of these links, those pages should load into the main section.Explanation / Answer
If you have any doubts, please give me comment...
<!DOCTYPE html>
<html>
<head>
<title>Frames</title>
</head>
<body>
<iframe src="header.html" width="100%"></iframe>
<div>
<iframe src="menu.html" width="20%"></iframe>
<iframe src="main.html" width="79%" name="pages"></iframe>
</div>
</body>
</html>
header.html
<h1>This is header</h1>
menu.html
<ul>
<li><a href="page1.html" target="pages">Page 1</a></li>
<li><a href="page2.html" target="pages">Page 2</a></li>
<li><a href="page3.html" target="pages">Page 3</a></li>
</ul>
main.html
<h3>here we load pages</h3>
page1.html
<h2>Page 1</h2>
page2.html
<h2>Page 2</h2>
page3.html
<h2>Page 3</h2>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.