-
Notifications
You must be signed in to change notification settings - Fork 37
/
activities.html
158 lines (154 loc) · 5.17 KB
/
activities.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!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>RBJKS::Activities</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link rel="stylesheet" type="text/css" href="assets/css/activities.css" />
<link rel="stylesheet" type="text/css" href="assets/css/gallery.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="icon" type="image/png" href="/assets/images/faviconn.png" />
</head>
<body>
<div id="navbar">
<nav>
<a href="/">
<img
class="logo"
alt="RBJKS LOGO"
src="./assets/images/faviconn.png"
loading="lazy"
/>
</a>
<ul>
<!-- <li></li> -->
<li><a class="translate" href="/" aria-label="होम">Home</a></li>
<li>
<a
class="translate"
href="/activities.html"
target="_self"
aria-label="प्रयास"
>Activities</a
>
</li>
<li>
<a
class="translate"
href="/contact.html"
target="_self"
aria-label="सम्पर्क करें"
>Contact Us</a
>
</li>
<li>
<a
class="translate"
href="#"
aria-label="Read in English"
onclick="changelanguage()"
>हिन्दी में देखिये</a
>
</li>
</ul>
<svg class="hamburger" onclick="toggleMobileNav()" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="white" fill="none">
<path d="M4 5L20 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M4 12L20 12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M4 19L20 19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</nav>
<div class="special-button">
<a class="translate" href="#" aria-label="Read in English" onclick="changelanguage()">हिन्दी में देखिये</a>
</div>
<ul class="mobileNav">
<li><a class="translate" href="/" aria-label="होम">Home</a></li>
<li>
<a
class="translate"
href="/activities.html"
target="_self"
aria-label="प्रयास"
>Activities</a
>
</li>
<li>
<a
class="translate"
href="/contact.html"
target="_self"
aria-label="सम्पर्क करें"
>Contact Us</a
>
</li>
</ul>
</div>
<div class="activities">
<h3>Activities</h3>
<!-- <div class="twitter-activities">
<a
class="twitter-timeline"
data-width="500"
data-height="500"
href="https://twitter.com/a_bsays?ref_src=twsrc%5Etfw"
>Tweets by a_bsays</a
>
<script
async
src="https://platform.twitter.com/widgets.js"
charset="utf-8"
></script>
</div> -->
<div class="gallery-container">
<div class="gallery" id="gallery"></div>
</div>
</div>
<div class="footer">
<footer>
<section class="about flex-col">
<img
class="logo"
alt="RBJKS LOGO"
src="./assets/images/faviconn.png"
loading="lazy"
/>
<p class="about--address">
PO Jassur, Tehsil - Nurpur, District - Kangra, HP, 176201.
</p>
<p class="about--contact">
<img src="./assets/images/phone.svg" alt="phone" loading="lazy" />
+91 - 9418151074 / 8675300009
</p>
<p class="about--mail">
<img src="./assets/images/mail.svg" alt="email" loading="lazy" />
</p>
</section>
<section class="social-media-icons flex-col">
<p>Contact Us</p>
<div class="icons">
<a href="https://twitter.com/a_bsays" target="_blank"
><img
src="./assets/images/twitter.svg"
alt="twitter"
loading="lazy"
/></a>
<!-- <a href="#" target="_blank"><img src="./assets/images/instagram.svg" alt="instagram" loading="lazy"></a> -->
<a href="https://www.facebook.com/akil.bakhshi/" target="_blank"
><img
src="./assets/images/facebook.svg"
alt="facebook"
loading="lazy"
/></a>
</div>
</section>
</footer>
</div>
</body>
<script src="assets/script/main.js"></script>
<script src="assets/script/gallery.js"></script>
</html>