-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
323 lines (301 loc) · 14.5 KB
/
index.html
File metadata and controls
323 lines (301 loc) · 14.5 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>COSMOVOID</title>
<link rel="icon" type="image/png" sizes="512x512" href="Assets\favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS style sheets -->
<link rel="stylesheet" href="CSS\homepage.css">
<link rel="stylesheet" href="CSS\navbar.css">
<link rel="stylesheet" href="CSS\footer.css">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<!-- Boxicons CSS -->
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar">
<div class="logo_item">
<i class="bx bx-menu" id="sidebarOpen"></i>
<img src="Assets\LOGO\logo_white.png" alt="logo"></i>
</div>
<div class="navbar_content">
<i class="bi bi-grid"></i>
<i class='bx bx-sun' id="darkLight"></i>
<div class="nav-btn">
<a href="learn.html"><span>Explore</span></a>
</div>
</div>
</nav>
<!-- sidebar -->
<nav class="sidebar">
<div class="menu_content">
<ul class="menu_items">
<!-- Start -->
<li class="item">
<a href="index.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bx-home'></i>
</span>
<span class="navlink">Home</span>
</a>
</li>
<!-- End -->
<li class="item">
<a href="learn.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bx-book-open'></i>
</span>
<span class="navlink">Learn More</span>
</a>
</li>
<li class="item">
<a href="timeline.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bxs-calendar'></i>
</span>
<span class="navlink">Timeline</span>
</a>
</li>
<li class="item">
<a href="biograpgy/index.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bx-street-view'></i>
</span>
<span class="navlink">Biographies</span>
</a>
</li>
<li class="item">
<a href="facilities.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bxs-chalkboard'></i>
</span>
<span class="navlink">Facilities</span>
</a>
</li>
<li class="item">
<a href="parallax\index.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bxs-circle'></i>
</span>
<span class="navlink">Chandrayan-3</span>
</a>
</li>
<li class="item">
<a href="gallery.html" class="nav_link">
<span class="navlink_icon">
<i class='bx bxs-dashboard' ></i>
</span>
<span class="navlink">Gallery</span>
</a>
</li>
</ul>
<!-- Sidebar Open / Close -->
<div class="bottom_content">
<div class="bottom expand_sidebar">
<span> Expand</span>
<i class='bx bx-log-in' ></i>
</div>
<div class="bottom collapse_sidebar">
<span> Collapse</span>
<i class='bx bx-log-out'></i>
</div>
</div>
</div>
</nav>
<section class="padding-other-than-navbar">
<!-- Hero-Section -->
<section class="hero-section">
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
</div>
<div class="col-lg-6">
<h1 id="main">Explore ISRO's Journey To</h1>
<h1><span id="typewriter">Stars</span><span id="cursor">|</span></h1>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<div class="btn hero-cta-btn">
<a href="learn.html"><span>Start Exploring</span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About-US -->
<section class="homepage-text about-us">
<h1 class="homepage-title">ABOUT US</h1>
<p class="homepage-para">At <strong>"CosmoVoid"</strong>, we celebrate India's remarkable space program through interactive timelines, virtual tours, spacecraft design games, and captivating galleries. Our mission is to inspire the next generation of space scientists, engineers, and explorers by showcasing the brilliance of ISRO's missions and the contributions of its astronauts and scientists. Join us on this cosmic voyage where knowledge knows no bounds and the pursuit of understanding reaches beyond the stars.</p>
</section>
<!-- Horizontal-Rule -->
<div class="hor-rule">
<hr class="line">
</div>
<!-- Gallery Preview -->
<section class="gallery-preview">
<h1 id="gallery-title" class="homepage-title">GLIMPSES FROM OUR GALLERY</h1>
<div class="wrapper">
<input type="radio" name="slide" id="one" checked>
<input type="radio" name="slide" id="two">
<input type="radio" name="slide" id="three">
<!-- <input type="radio" name="slide" id="four">
<input type="radio" name="slide" id="five"> -->
<div class="img img-1">
<img src="Assets\Gallery Preview\img-pre-1.jpg" alt="">
</div>
<div class="img img-2">
<img src="Assets\Gallery Preview\img-pre-2.jpg" alt="">
</div>
<div class="img img-3">
<img src="Assets\Gallery Preview\img-pre-3.jpg" alt="">
</div>
<!-- <div class="img img-4">
<img src="images/img-4.jpg" alt="">
</div>
<div class="img img-5">
<img src="images/img-5.jpg" alt="">
</div> -->
<div class="sliders">
<label for="one" class="one"></label>
<label for="two" class="two"></label>
<label for="three" class="three"></label>
<!-- <label for="four" class="four"></label>
<label for="five" class="five"></label> -->
</div>
</div>
<div class="gallery-btn">
<div class="btn gallery-cta-btn">
<a href="gallery.html"><span>Visit Gallery</span></a>
</div>
</div>
</section>
<!-- Horizontal-Rule -->
<div class="hor-rule">
<hr class="line">
</div>
<!-- learn-section Preview -->
<section class="learn-preview">
<h1 class="learn-preview-h1 homepage-title">ISRO - Exploring the Unexplored</h1>
<div class="accordion" id="accordionPanelsStayOpenExample">
<!-- Module-1 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseOne" aria-expanded="true" aria-controls="panelsStayOpen-collapseOne">
<b>Module-1: Introduction to ISRO</b>
</button>
</h2>
<div id="panelsStayOpen-collapseOne" class="accordion-collapse collapse show">
<div class="accordion-body">
<strong>Knowledge Bite</strong><br>
The Indian Space Research Organisation (ISRO) is the space agency of the Government of India, established in 1969. It is responsible for the research and development of <a href="learn.html">Read More....</a>
</div>
</div>
</div>
<!-- Module-2 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseTwo" aria-expanded="false" aria-controls="panelsStayOpen-collapseTwo">
<b>Module-2: Historical Milestones of ISRO</b>
</button>
</h2>
<div id="panelsStayOpen-collapseTwo" class="accordion-collapse collapse">
<div class="accordion-body">
<strong>Knowledge Bite</strong><br>
ISRO has a rich history of accomplishments and breakthroughs in space exploration. One of its most significant achievements was the successful launch of <a href="learn.html">Read More....</a>
</div>
</div>
</div>
<!-- Module-3 -->
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseThree" aria-expanded="false" aria-controls="panelsStayOpen-collapseThree">
<b>Module-3: Notable Astronauts and Scientists</b>
</button>
</h2>
<div id="panelsStayOpen-collapseThree" class="accordion-collapse collapse">
<div class="accordion-body">
<strong>Knowledge Bite</strong><br>
ISRO has been home to several remarkable astronauts and scientists who have played pivotal roles in the organization's success. Some of the notable astronauts include Rakesh Sharma, who became the first <a href="learn.html">Read More....</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section class="footer">
<footer>
<div class="content">
<div class="top">
<div class="logo-details">
<img class="logo-footer" src="Assets\LOGO\logo_white.png" alt="logo"></i>
</div>
<div class="media-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="link-boxes">
<ul class="box">
<li class="link_name">Navigation</li>
<li><a href="index.html">Home</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="timeline.html">Time Line</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
<ul class="box">
<li class="link_name">Navigation</li>
<li><a href="biograpgy/index.html">Biographies</a></li>
<li><a href="facilities.html">Facilities at ISRO</a></li>
<li><a href="parallax/index.html">Chandrayaan-3</a></li>
</ul>
<ul class="box">
<li class="link_name">Useful Links</li>
<li><a href="https://www.isro.gov.in/" target="_blank">ISRO</a></li>
<li><a href="https://www.youtube.com/watch?v=dGCZwn_l9Zg" target="_blank">Chandrayaan-3 Live</a></li>
</ul>
<ul class="box">
<li class="link_name">Educational Resouces</li>
<li><a href="https://en.wikipedia.org/wiki/ISRO">ISRO WikiPedia</a></li>
<li><a href="https://www.wionews.com/india-news/who-is-s-somanath-heres-all-you-need-to-know-about-newly-appointed-isro-chairman-444197" target="_blank">Who is S Somanath?</a></li>
<li><a href="https://www.isro.gov.in/SpaceCommision.html">ISRO Space Commision</a></li>
</ul>
<ul class="box input-box">
<li class="link_name">Subscribe</li>
<li><input type="text" placeholder="Enter your email"></li>
<li><input type="button" value="Subscribe"></li>
</ul>
</div>
</div>
<div class="bottom-details">
<div class="bottom_text">
<span class="copyright_text">Copyright © 2023 <a href="#">BrandName.</a>All rights reserved</span>
<span class="policy_terms">
<a href="#">Privacy policy</a>
<a href="#">Terms & condition</a>
</span>
</div>
</div>
</footer>
</section>
<script src="JS\homepage.js"></script>
<script src="JS\navbar.js"></script>
</body>
</html>