-
Notifications
You must be signed in to change notification settings - Fork 1
/
place.html
66 lines (64 loc) · 2.95 KB
/
place.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
<html>
<head>
<style>
.row{
float: left;
display: inline;
margin-top: 10px;
margin-left: 15px;
}
a{
text-decoration: none;
font-size: 24px;
color: aliceblue;
text-shadow: 0px 0px 3px red;
text-align: center;
border-radius: 4px;
padding:0px 15px;
}
a:hover{
margin-top: 20px;
border: 1px solid;
}
.center{
position: absolute;
margin-top: -130px;
margin-left: 40px;
color: white;
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="img">
<marquee direction="up" behavior="slide" scrollamount="9" onmouseover="this.stop();" onmouseout="this.start();">
<div class="row">
<img src="bangalore-palace-and-grounds-bangalore.jpg" width="250px" height="150px" val><br>
<div class="center"><a href="goa1.html" target="my" class="a">Bangalore Palace</a></div>
<br>
<img src="elephant.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" target="my">Elephant Caves</a></div><br>
<img src="ajanta.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" target="my">Ajanta Caves</a></div><br>
</div>
<div class="row">
<img src="goa.jpg" width="250px" height="150px"><br>
<div class="center"><a href="nayagara.html" target="my" style="margin-left: 45px">Goa</a></div><br>
<img src="lingaraja-temple-complex-khurda.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" target="my">Lingaraja Temple</a></div><br>
<img src="hampi.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" style="margin-left: 45px;"target="my" style="color:red;">Hampi</a></div><br>
</div>
<div class="row">
<img src="lotus-temple-delhi.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" target="my">Lotus Temple</a></div><br>
<img src="gir-national-park-junagarh.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" target="my"> Gir Park</a></div><br>
<img src="sai10.jpg" width="250px" height="150px"><br>
<div class="center"><a href="goa1.html" target="my" style="margin-left: 20px">Pudicherry</a></div><br>
</div>
</marquee>
</div>
</body>
</html>