-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
151 lines (148 loc) · 5.33 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
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
<!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::Home</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.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="introduction">
<section class="intro-image-section">
<img
src="assets/images/brand/Ext jacket.jpg"
class="intro-image"
alt="Ranjeet Bakhshi Jan Kalyan Sabha"
loading="lazy"
/>
</section>
<section class="intro-text">
<h1 class="title translate" aria-label="रणजीत बख्शी जन कल्याण सभा">
Ranjeet Bakhshi Jan Kalyan Sabha
</h1>
<p
class="subtitle translate"
aria-label="हिमाचल प्रदेश में स्थित नूरपुर शहर की रणजीत बख्शी जन कल्याण सभा एक NGO है, जो ग्रामीण मुद्दे सुलझाने का प्रयास करती है|"
>
An NGO set up in Nurpur, Himachal Pradesh, Ranjeet Bakhshi Jan Kalyan
Sabha (RBJKS) aims to solve local community issues by means of organic
crowdfunding.
</p>
</section>
</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"
/></a>
<!-- <a href="#" target="_blank"><img src="./assets/images/instagram.svg" alt="instagram"></a> -->
<a href="https://www.facebook.com/akil.bakhshi/" target="_blank"
><img src="./assets/images/facebook.svg" alt="facebook"
/></a>
</div>
</section>
</footer>
</div>
</body>
<script src="assets/script/main.js"></script>
</html>