On Your Own Lesson 22: Targets and Navigation Bars
For this lesson you will learn how to create a navigation bar using the target tag. This lesson is tricky! You will be creating two new files, as well as using the three frame files from lesson 19.
To learn how to do this assignment, go to
www.w3schools.com/html/html_frames
For this lesson you should create a web page, saved as "lesson22-your name.html" in your "html lessons" folder, that has the following:
The words "Lesson 22" in the title bar.
A frame set that creates the following:
A frame on the left side of the screen named "leftwindow.html" that has links to the three frames you have made: frame_a.html, frame_b.html, and frame_c.html.
A larger frame on the right side of the screen in which the three frames appear.
To create the frame saved as "leftwindow.html," follow these directions in the box below:
Copy these tags and paste them into a new file.
Save this file as "leftwindow.html"
<html>
<body>
<a href ="frame_a.html" target ="showframe">Frame a
<a href ="frame_b.html" target ="showframe">Frame b
<a href ="frame_c.html" target ="showframe">Frame c
</body>
</html>