forked from aditihonagekar/web-technology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
7_frames.html
63 lines (58 loc) · 1.65 KB
/
7_frames.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourism Website</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f0f0;
}
#header {
background-color: #007bff;
color: #fff;
padding: 10px;
text-align: center;
}
#sidebar {
background-color: #007bff;
color: #fff;
padding: 10px;
}
#main_content {
padding: 20px;
}
iframe {
border: none;
width: 100%;
height: 100%;
}
p {
text-align: center;
font-size: 1.2em;
color: #555;
}
</style>
</head>
<body>
<div id="header">
<h1>Welcome to Our Tourism Website</h1>
</div>
<div id="sidebar">
<h2>Explore</h2>
<ul>
<li><a href="destinations.html" target="main_content">Destinations</a></li>
<li><a href="activities.html" target="main_content">Activities</a></li>
<li><a href="accommodations.html" target="main_content">Accommodations</a></li>
<!-- Add more sidebar links as needed -->
</ul>
</div>
<div id="main_content">
<iframe src="main_content.html" name="main_content"></iframe>
</div>
<p>This page requires a browser that supports frames.</p>
</body>
</html>