-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
298 lines (253 loc) · 11.3 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!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" />
<link rel="stylesheet" href="./Home_and_Events/css/style.css">
<!-- CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Sanchez&display=swap" rel="stylesheet" />
<!--Custom CSS-->
<style type="text/tailwindcss">
@layer utilities {
.homepagebg{
background: url('./Home_and_Events/img/cutearth-removebg-preview.png') no-repeat center center/cover;
background-color: #DAF7A6 ;
position: relative;
background-size: cover;
}
.homepagebgmd{
background: url('./Home_and_Events/img/cutearth-removebg-preview.png') no-repeat center center/cover;
background-color: #DAF7A6 ;
position: relative;
background-size: cover;
}
.homepagebglg{
background: url('./Home_and_Events/img/cutearth-removebg-preview.png') no-repeat center center/cover;
background-color: #d4e8b0 ;
position: relative;
background-size: cover;
}
.homepagebgxl{
background: url('./Home_and_Events/img/cutearth-removebg-preview.png') no-repeat center center/cover;
background-color: #DAF7A6 ;
position: relative;
background-size: cover;
}
.homepagebgxxl{
background: url('./Home_and_Events/img/cutearth-removebg-preview.png') no-repeat center center/cover;
background-color: #DAF7A6 ;
position: relative;
background-size: cover;
}
}
</style>
<!--Tailwind config-->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "1024px",
xl: "1440px",
xxl: "1536px"
},
backgroundSize: {
'auto': 'auto',
'cover': 'cover',
'contain': 'contain',
'50%': '50%',
'16': '4rem',
},
extend: {
fontFamily: {
poppins: ["Poppins"],
sanchez: ["Sanchez"],
},
backgroundImage: {
homepageimg:
"url('./Home_and_Events/img/106-1060448_earth-svg-download-earth-svg-doodle-of-the-earth-removebg-preview1.png')",
facultybgimg: "url('./Home_and_Events/img/abstractleaf-real_adobe_express1.svg')",
},
colors: {
limegreen: "#DAF7A6",
lightyellow: "#ECF7A6",
footer1: "#DAF7A6",
footer2: "#C6E78B",
bgcol: "#d4e8b0"
},
},
},
};
</script>
<title>The Biosphere Website</title>
</head>
<body>
<!-- Navbar goes here -->
<nav class="bg-limegreen sticky top-0 w-full ">
<div class="h-20 mx-auto px-4 flex justify-start items-center md:justify-center">
<div class="flex space-x-7">
<!-- Primary Navbar items -->
<div
class="hidden flex md:flex md:flex-grow flex-row justify-center space-x-12 text-base lg:space-x-20 lg:text-2xl">
<a href="./index.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300 text-lg">Home</a>
<a href="./Harsh Verma/events.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300 text-lg">Events</a>
<a href="./Our team/index.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300 text-lg">Our
Team</a>
<a href="./Gallery/index.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300 text-lg">Gallery</a>
</div>
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button class="outline-none mobile-menu-button">
<svg class=" w-6 h-6 text-gray-500 hover:text-green-500 " x-show="!showMenu" fill="none"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- mobile menu -->
<div class="hidden mobile-menu">
<ul class="flex flex-col space-y-5">
<li class="active"><a href="./index.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300">Home</a>
</li>
<li><a href="./Harsh Verma/events.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300">Events</a>
</li>
<li><a href="./Our team/index.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300">Our
Team</a></li>
<li><a href="./Gallery/index.html"
class="py-4 px-2 text-gray-500 font-semibold hover:text-black transition duration-300">Gallery</a>
</li>
</ul>
</div>
<script>
const btn = document.querySelector("button.mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
btn.addEventListener("click", () => {
menu.classList.toggle("hidden");
});
</script>
</nav>
<!--Home Section-->
<section id="home">
<!--Container of the home page-->
<div class="container flex flex-col items-center max-w-full">
<!--first half of the home page-->
<div id="" class="md:p-20 bg-bgcol flex flex-col items-center w-screen">
<!-- Biosphere Logo-->
<div class="py-7">
<img src="./Home_and_Events/img/Biosphere_Club.png" alt="" class="w-40 rounded-full bg-contain pt-3">
</div>
<!--tagline-->
<div class="md:my-4 font-poppins font-medium md:text-2xl py-5">
195 Countries | 8 Billion People | 1 Planet
</div>
<!-- main tagline-->
<div class="flex text-2xl md:py-4 font-poppins text-center mb-10 md:mx-28 md:text-4xl">
One Planet, One conscious decision to live in harmony
</div>
<!--about us-->
<div class="flex flex-col items-center my-10 md:my-56 bg-gray-100 mx-4 rounded-xl bg-opacity-70 md:mx-10">
<!--About us heading-->
<div class="font-sanchez my-10 md:text-xl lg:text-3xl">About Us</div>
<!--group photo and content-->
<div class="container flex flex-col-reverse items-center">
<!--content-->
<div class="flex text-[7px] mx-8 md:text-sm lg:text-xl">
<p class="px-7 py-6 text-justify">
We created our club with the vision to create awareness
among people and make impact by realizing how real the
global warming and climate changes are. Join us to build a
sustainable environment and leave behind a better place for
the future generations. Encouraging active participation and
spreading hope that small changes do matter. Respecting,
Observing and Understanding of Plants, Animals, Places and
Culture. Getting knowledge and finding new ways to heal the
planet.
</p>
</div>
<!--group photo-->
<div class="flex items-center" style="display: flex; align-items: center; justify-content: center;">
<img src="./Home_and_Events/img/grp.jpg" id="grouppic" class="px-4 object-cover"
style="height: auto; width: 60%;" />
</div>
</div>
</div>
</div>
<!--second half of the home page-->
<div id="facultyCont" class="py-24 bg-facultybgimg bg-cover bg-opacity-10 w-screen -mt-1">
<!--faculty container-->
<div class="flex flex-col items-center my-5 mx-6 bg-gray-100 bg-opacity-30 rounded-xl md:mx-10 mt-10">
<!--faculty coordinator heading-->
<div class="font-sanchez text-base my-4 md:text-xl lg:text-3xl">Faculty Coordinator</div>
<!--madam photo and content-->
<div class=" px-4 container flex flex-col justify-center items-center gap-1 md:gap-3 md:flex-row">
<!--madam photo-->
<div class="flex items-center" style="display: flex; align-items: center; justify-content: center;">
<img src="./Home_and_Events/img/maam2.jpg" class="rounded-md p-3" style="height: auto; width: 60%;" />
</div>
<!--content-->
<div class="flex text-[7px] mr-0.5 md:text-sm lg:text-xl">
<p class="p-3 text-justify text-sm md:text-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Praesentium quos minima, provident ipsum doloremque asperiores
deserunt alias facere sed, dignissimos exercitationem ea unde
magnam natus aspernatur? Nostrum perspiciatis officiis
explicabo Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ut similique quam excepturi numquam
maxime eligendi itaque dignissimos, iste autem, tenetur cupiditate illum optio laudantium? Suscipit
excepturi obcaecati ipsa. Vitae, illum?
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--footer section-->
<footer class="p-4 bg-white flex shadow md:flex md:items-center md:justify-between md:p-6 dark:bg-gray-800"
style="background-color: #DAF7A6;">
<div class=" text-sm text-black-500 sm:text-left dark:text-black-400 font-Sanchez font-medium pt-8"> Lenin Vasan
(President) : +91 9876543210<br>
Shubreeta Chatterjee (Vice President) : +91 9876543210<br>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-square-instagram"></i>
<i class="fa-brands fa-linkedin"></i>
<i class="fa-brands fa-medium"></i>
<i class="fa-brands fa-youtube"></i>
</div>
<br>
<div class="text-lg text-black-500 sm:text-left dark:text-black-400 font-Sanchez self-start pb-20 "> CONTACT US
</div><br>
<div class=" flex flex-wrap text-sm text-black-500 sm:text-right dark:text-black-400 font-Sanchez font-medium pt-8">
VIT Chennai<br>
Vandalur - Kelambakkam Road Chennai <br>
600 127 044 3993 1555
</div>
</footer>
<div class="p-4 bg-gray shadow dark:bg-gray-800" style="background-color: #b8f645;">
<p class="text-sm text-black-500 sm:text-center dark:text-black-400 font-Sanchez font-medium ">
<a href="../Developer_page_cdn/developer_index.html">Developed by Biosphere Tech</a>
</p>
</div>
</body>
</html>
<!-- homepagebg md:homepagebgmd lg:homepagebglg xl:homepagebgxl xxl:homepagebgxxl -->