-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (92 loc) · 2.96 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>Adventures of india</title>
<link rel="stylesheet" href="Project/css/navbar.css">
<style>
.dropdown a{
color : white;
}
body{
margin: 0;
}
.background img{
z-index : -1;
position : absolute;
width : 100%;
}
.image1 img, .image2 img, .image3 img{
width : 70%;
}
.image1 p, .image2 p, .image3 p{
color : white;
margin-left : 240px;
font-size : 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.image1{
position : absolute;
left : 10%;
top : 12%;
}
.image2{
position : absolute;
top : 50%;
left : 50%;
}
.image3{
position : absolute;
top: 80%;
left : 10%;
}
</style>
</head>
<body>
<div class="background">
<img src="Project/images-adv/patrick-fore-UFqV-RqPm8w-unsplash.jpg">
</div>
<div class="navbg">
<div class="dropdown">
<button class="dropbtn"><a href="homepage.html">home</a></button>
</div>
<div class="dropdown">
<button class="dropbtn"><a>State-wise <i class="fa fa-caret-down"></i></a>
</button>
<div class="dropdown-content">
<a href="state_tourism_kerala.html">Kerala</a>
<a href="state_tourism_rajasthan.html">Rajasthan</a>
<a href="state_tourism_Andhra_pradesh.html">Andhra Pradesh</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn"><a href="original.html">Adventure </a>
</button>
</div>
<div class="dropdown">
<button class="dropbtn"><a href="hillstations.html">Hill Station </a>
</button>
</div>
<div class="dropdown">
<button class="dropbtn"><a href="beaches.html">Beaches </a>
</button>
</div>
<div class="dropdown">
<button class="dropbtn"><a href="np.html">National parks </a>
</button>
</div>
<div class="dropdown">
<button class="dropbtn"><a href="templesmain.html">Temples </a>
</button>
</div>
</div>
<div class="image1">
<a href="Project/adv-rishikesh.html"><img src="Project/images-adv/adv1.jpg"><p>Rishikesh</p></a>
</div>
<div class="image2">
<a href="Project/adv-Kovalam.html"><img src="Project/images-adv/adv2.jpg"><p>Kovallam</p></a>
</div>
<div class="image3">
<a href="Project/adv-Auli.html"><img src="Project/images-adv/adv3.jpg"><p>Auli</p></a>
</div>
</body>
</html>