-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage_main.html
More file actions
40 lines (39 loc) · 1.45 KB
/
Copy pathpage_main.html
File metadata and controls
40 lines (39 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>
jquery layout</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<link rel="stylesheet" href="css_main.css">
<script>
$(document).ready(function(){
$(".vertical").click(function(){
$("ul").animate({width:'toggle'});
});
$(".verti").click(function(){
$("ul").fadeOut("fast");
});
});
</script>
</head>
<body>
<div class="container">
<header><h1>TOP FOUR CONTINENT</h1></header>
<nav><a href="page_main.html" class="continent">All</a>
<a href="page_image.html" class="continent">images</a>
<a href="page_map_video.html" class="continent">videos</a>
<a href="page_books.html" class="continentend">books</a>
</nav>
<div class="vertical"> <sub> ≡</sub></div>
<ul>
<br><li><a href="frame_home.html" class="verti" target="continent_frame">Home</a></li>
<li><a href="frame_one.html" class="verti" target="continent_frame">continent 1</a></li>
<li><a href="frame_two.html" class="verti" target="continent_frame">continent 2</a></li>
<li><a href="frame_three.html" class="verti" target="continent_frame">continent 3</a></li>
<li><a href="frame_four.html" class="verti" target="continent_frame">continent 4</a></li></ul>
<iframe src="frame_home.html" name="continent_frame" target="continet_frame"></iframe>
<footer>All copy rights are reserved ©</footer>
</div>
</body>
</html>