-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemples.html
110 lines (84 loc) · 5.23 KB
/
temples.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
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body>
<a name="#top"></a>
<section class="header sub-header">
<div class="logo">
<a href="index.html"><img src="https://i.postimg.cc/0jPcZmWQ/logo.png"></a>
</div>
<div class="nav-menu">
<ul>
<li class="nav-links"><a href="forms.html">9 Forms</a></li>
<li class="nav-links"><a href="temples.html">Temples</a></li>
<li class="nav-links"><a href="calendar.html">Calendar</a></li>
<li class="nav-links"><a href="facts.html">Facts</a></li>
</ul>
</div>
</section>
<section class="containerTwo">
<div class="galleryContainer">
<h1>Gallery <br class="font">Famous Temples To Visit During Navratri</h1>
<div class="gallery">
<input type="radio" name="controls" id="c1" checked>
<img src="https://resize.indiatvnews.com/en/resize/newbucket/715_-/2017/09/ambaji-1505987165.jpg" id="i1" class="galleryImage">
<input type="radio" name="controls" id="c2">
<img src="https://www.nativeplanet.com/img/2016/12/chamundeshwari-27-1482839475.jpg" id="i2" class="galleryImage">
<input type="radio" name="controls" id="c3">
<img src="https://cdn-ccnjl.nitrocdn.com/FFlOINYZCUxrEWbcRFzJMkRxycjLZyST/assets/static/optimized/blog/wp-content/uploads/2021/10/32f93762e5396d24b1347b2507e13e41.Kanaka-Durga-Temple-Andhra-Pradesh.jpg" id="i3" class="galleryImage">
<input type="radio" name="controls" id="c4">
<img src="https://img.traveltriangle.com/blog/wp-content/tr:w-700,h-400/uploads/2018/05/149.jpg" id="i4" class="galleryImage">
<input type="radio" name="controls" id="c5">
<img src="https://cdn-ccnjl.nitrocdn.com/FFlOINYZCUxrEWbcRFzJMkRxycjLZyST/assets/static/optimized/blog/wp-content/uploads/2021/10/7180a98c617d66a5dc56e6ace0892324.Amba-Mata-Temple-Gujarat.jpg" id="i5" class="galleryImage">
<input type="radio" name="controls" id="c6">
<img src="https://www.nativeplanet.com/img/2016/12/27-1482839216-sringeri.jpg" id="i6" class="galleryImage">
</div>
<div class="thumbnails">
<label class="thumbnailImage" for="c1">
<img src="https://resize.indiatvnews.com/en/resize/newbucket/715_-/2017/09/ambaji-1505987165.jpg">
<span>Ambaji Durga Temple, Gujarat</span>
</label>
<label class="thumbnailImage" for="c2">
<img src="https://www.nativeplanet.com/img/2016/12/chamundeshwari-27-1482839475.jpg">
<span>Chamundeshwari Temple, Karnataka</span>
</label>
<label class="thumbnailImage" for="c3">
<img src="https://cdn-ccnjl.nitrocdn.com/FFlOINYZCUxrEWbcRFzJMkRxycjLZyST/assets/static/optimized/blog/wp-content/uploads/2021/10/32f93762e5396d24b1347b2507e13e41.Kanaka-Durga-Temple-Andhra-Pradesh.jpg">
<span>Kanaka Durga, Andhra Pradesh</span>
</label>
<label class="thumbnailImage" for="c4">
<img src="https://img.traveltriangle.com/blog/wp-content/tr:w-700,h-400/uploads/2018/05/149.jpg">
<span> Durga Temple, Aihole</span>
</label>
<label class="thumbnailImage" for="c5">
<img src="https://cdn-ccnjl.nitrocdn.com/FFlOINYZCUxrEWbcRFzJMkRxycjLZyST/assets/static/optimized/blog/wp-content/uploads/2021/10/7180a98c617d66a5dc56e6ace0892324.Amba-Mata-Temple-Gujarat.jpg">
<span>Amba Mata Temple, Gujarat </span>
</label>
<label class="thumbnailImage" for="c6">
<div><img src="https://www.nativeplanet.com/img/2016/12/27-1482839216-sringeri.jpg">
<span>Sringeri,Karnataka</span>
</label>
</div>
</div>
</section>
<div>
<a href="#top"><i class="far fa-arrow-alt-circle-up"></i></a>
</div>
<!-- --------Footer--------- -->
<section class="footer">
<div class="icons">
<a href="https://www.facebook.com/prakash.babu.14268"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/sinchana_p_03"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/sinchana_p_gudagi/"><i class="fab fa-instagram"></i></a>
</div>
<h4>Made with <i class="fas fa-heart"></i> by Devotees of Goddess</h4>
</section>
</body>
</html>