-
Notifications
You must be signed in to change notification settings - Fork 1
/
rockets.html
707 lines (628 loc) · 28.5 KB
/
rockets.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
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rockets | Cosmic Chronicles</title>
<link rel="icon" type="image/x-icon" href="./images/space-logo-64-cropped.ico" sizes="64x64">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/header.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<style>
*{
padding: 0;
margin: 0;
letter-spacing: 1px;
font-weight: 300;
}
html{
scroll-behavior:smooth;
}
body{
/* background-color: #2d2d2d; */
background-color: #1f1f1f;
font-family: sans-serif;
color: white;
}
.container{
width: 1460px;
max-width: 90%;
margin: 0 auto;
}
section.rocket{
display: grid;
grid-template-columns: 1fr 100px 1fr;
grid-gap: 80px;
padding: 100px 0;
}
section.rocket .rocket-body{
display: flex;
flex-direction: column;
justify-content: center;
}
section.rocket .rocket-body span{
font-size: 0;
position: relative;
}
section.rocket .rocket-body span img{
width: 100%;
}
section.rocket .block{
width: 70%;
}
section.rocket .block h1{
font-size: 32px;
font-weight: 400;
}
section.rocket .block .highlight{
position: relative;
margin-bottom: 38px;
}
section.rocket .block .highlight:before{
content: "";
position: absolute;
left: 0;
bottom: -12px;
display: block;
width: 38%;
height: 2px;
background: white;
}
section.rocket .block h1.highlight:before{
width: 20%;
}
section.rocket p{
line-height: 1.6;
}
section.rocket .block h2{
font-weight: 400;
margin-bottom: 20px;
}
section.rocket .block.payload{
padding-top: 130px;
}
section.rocket .block.payload h2{
padding-left: 80px;
}
section.rocket .block.dragon{
padding-top: 120px;
}
section.rocket .block.composite{
padding-top: 120px;
}
section.rocket .block.first-stage{
padding-top: 120px;
}
section.rocket .block.capacity{
display: flex;
align-items: center;
padding-top: 140px;
margin-bottom: -60px;
}
section.rocket .block.capacity > div:first-child{
margin-right: 40px;
}
section.rocket .block.capacity h4{
font-size: 12px;
font-weight: 400;
margin-bottom: 10px;
}
section.rocket .block.capacity h6{
font-size: 40px;
font-weight: 400;
margin-top: 20px;
}
section.rocket .block.capacity h6 small{
font-size: 12px;
}
section.rocket .block.second-stage{
padding-top: 60px;
}
section.rocket .right-block.block.capacity{
padding-top: 120px;
}
section.rocket .right-block.block.single{
padding-top: 40px;
}
section.rocket .right-block .block.engines{
display: flex;
justify-content: center;
padding-top: 70px;
}
section.rocket .right-block .block.engines img{
width: 180px;
}
section.rocket .right-block .block.marine {
padding-top: 70px;
width: 70%;
}
section.rocket .right-block .block.marine h2{
font-size: 14px;
padding-left: 100px;
margin-bottom: 26px;
}
section.rocket .right-block .floating-graphics{
position: sticky;
float: right;
top: 120px;
margin-right: -60px;
}
section.rocket .right-block .floating-graphics img{
height: 350px;
}
section.rocket .rocket-body span:after, section.rocket .rocket-body span:nth-child(3):before{
content: '';
display: block;
position: absolute;
height: 2px;
background: white;
width: 0;
transition: width 1s ease-in-out;
}
section.rocket .rocket-body span:nth-child(1):after{
bottom: 16px;
left: 96%;
}
section.rocket .rocket-body span:nth-child(2):after{
bottom: 62%;
right: 100%;
}
section.rocket .rocket-body span:nth-child(3):after{
bottom: 64%;
right: 90%;
}
section.rocket .rocket-body span:nth-child(3):before{
bottom: 44%;
left: 90%;
}
section.rocket .rocket-body span.active:nth-child(1):after{
width: 120px;
}
section.rocket .rocket-body span.active:nth-child(2):after{
width: 180px;
}
section.rocket .rocket-body span.active:nth-child(3):after{
width: 200px;
}
section.rocket .rocket-body span.active:nth-child(3):before{
width: 160px;
}
@keyframes jump{
50%{
transform: translateY(-50px);
}
}
section.rocket .rocket-body span.active:nth-child(1){
animation: jump 1s ease-in-out forwards;
}
.hero-info{
margin-top: 90px;
/* margin-top: 100px; */
width: 97.3%;
background-color: rgb(18, 18, 18);
padding: 60px 20px 90px 20px;
line-height: 1.5rem;
font-size: medium;
/* padding-left: 20px; */
}
.hero-info .hero-head{
width: max-content;
letter-spacing: 1.5px;
padding-left: 20px;
padding-top: 30px;
padding-bottom: 20px;
}
.hero-info .hero-desc{
width: 90%;
padding-left: 20px;
}
.table-head{
width: max-content;
padding-left: 20px;
text-align: left;
padding-right: 90px;
padding-bottom: 20px;
}
.rocket-body-atlas span img{
height: 1500px;
margin-left: -120px;
}
section.rocket .right-block .block.atlasV-engine img{
padding-top: 100px;
width: 500px;
}
.pslv-rocket-body span img{
height: 1500px;
margin-left: -120px;
}
section.rocket .right-block .block.pslv-size img{
height: 800px;
width: 580px;
/* margin-left: -20px; */
padding-top: 40px;
margin-bottom: -100px;
/* mix-blend-mode: multiply; */
mix-blend-mode: overlay;
}
</style>
</head>
<body>
<!-- ====== NAVBAR ====== -->
<nav>
<div class="logo">
<a href="/"><img src="./images/space-logo-removebg-preview.png" alt="Cosmo-logo"></a>
</div>
<div class="hamburger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<ul class="navbar-links">
<li><a href="/">Home</a></li>
<li><a href="./solar-system-explore">Explore Space</a></li>
<li><a href="./cosmic-blast">Games</a></li>
<li><a href="" class="active">Rockets</a></li>
<li><a href="./blogs">Blogs</a></li>
<li><form action="./logout" method="POST">
<button class="login-button">LOGOUT</button>
</form></li>
<!-- <li><button class="join-button" href="#">Join</button></li> -->
</ul>
</nav>
<button onclick="topFunction()" id="myBtn" title="Go to top">
<span class="material-symbols-outlined">arrow_upward</span>
</button>
<!-- ====== PSLV ====== -->
<div class="hero-info">
<h1 class="hero-head">PSLV</h1>
<p class="hero-desc">
Polar Satellite Launch Vehicle (PSLV) is the third generation launch vehicle of India. It is the first Indian launch vehicle to be equipped with liquid stages. After its first successful launch in October 1994, PSLV emerged as a reliable and versatile workhorse launch vehicle of India. The vehicle has launched numerous Indian and foreign customer satellites. Besides, the vehicle successfully launched two spacecraft "Chandrayaan-1 in 2008 and Mars Orbiter Spacecraft in 2013"that later travelled to Moon and Mars respectively. Chandrayaan-1 and MOM were feathers in the hat of PSLV. The launch of PSLV-C48 marks the 50th Launch of PSLV. Besides, the vehicle successfully launched two spacecraft " Chandrayaan-1 in 2008 and Mars Orbiter Spacecraft in 2013"that later traveled to Moon and Mars respectively.
<table>
<h3 class="hero-head">Overview</h3>
<tr>
<th class="table-head">Height</th>
<td>44.4m</td>
</tr>
<tr>
<th class="table-head">Diameter</th>
<td>2.8m</td>
</tr>
<tr>
<th class="table-head">Variants</th>
<td> 4 (PSLV,CA,DL,QL,XL)</td>
</tr>
<tr>
<th class="table-head">Lift Off Mass</th>
<td>320 tonnes (XL)</td>
</tr>
<tr>
<th class="table-head">First Flight</th>
<td>September 20, 1993</td>
</tr>
</table>
</p>
</div>
<section class="rocket container">
<div class="left-block">
<div class="block">
<h1 class="highlight">PSLV</h1>
<p>PSLV is a highly reliable and versatile rocket renowned for its cost-effective deployment of satellites into polar and geosynchronous orbits, contributing significantly to India's space exploration and satellite deployment efforts.</p>
</div>
<div class="block dragon">
<h2 class="highlight">First Stage: PS1</h2>
<p>PSLV uses the S139 solid rocket motor that is augmented by 6 solid strap-on boosters.</p>
</div>
<div class="block composite">
<h2 class="highlight">Second Stage: PS2</h2>
<p>PSLV uses an Earth storable liquid rocket engine for its second stage, know as the Vikas engine, developed by Liquid Propulsion Systems Centre.</p>
</div>
<div class="block first-stage">
<h2 class="highlight">Third Stage: PS3</h2>
<p>The third stage of PSLV is a solid rocket motor that provides the upper stages high thrust after the atmospheric phase of the launch.</p>
</div>
<div class="block capacity">
<div>
<h2 class="highlight">Motor</h2>
<h6>S7</h6>
</div>
<div>
<h2 class="highlight">Max Thrust</h2>
<h6>240 <small>kN</small></h6>
</div>
</div>
<div class="block capacity">
<div>
<h2 class="highlight">Fuel</h2>
<h6>Hydroxyl-terminated polybutadiene (HTPB)</h6>
</div>
</div>
</div>
<div class="pslv-rocket-body">
<span class="first"><img src="./images/pslv-removebg-preview.png" alt="img1"></span>
</div>
<div class="right-block">
<!-- <div class="floating-graphics">
<img src="/images/pslv-size-removebg-preview.png" alt="">
</div> -->
<div class="block payload">
<h2>Payload to Sub GTO: 1,425 kg</h2>
<p>Due to its unmatched reliability, PSLV has also been used to launch various satellites into Geosynchronous and Geostationary orbits, like satellites from the IRNSS constellation.</p>
</div>
<div class="block second-stage">
<h2 class="highlight">Fourth Stage: PS4</h2>
<p>The PS4 is the uppermost stage of PSLV, comprising of two Earth storable liquid engines.</p>
</div>
<div class="block pslv-size">
<img src="./images/pslv-size-removebg-preview.png" alt="engine">
</div>
<div class="block marine">
<h1 class="highlight">Strap-on Motors</h1>
<p>PSLV uses 6,4,2 solid rocket strap-on motors to augment the thrust provided by the first stage in PSLV-XL, QL & DL variants respectively. However, strap-ons are not used in the core alone version (PSLV-CA).
</p>
</div>
</div>
</section>
<!-- ====== FALCON9 ====== -->
<div class="hero-info">
<h1 class="hero-head">Falcon9</h1>
<p class="hero-desc">
Falcon 9 is a reusable, two-stage rocket designed and manufactured by SpaceX for the reliable and safe transport of people and payloads into Earth orbit and beyond. Falcon 9 is the world's first orbital class reusable rocket. Reusability allows SpaceX to refly the most expensive parts of the rocket, which in turn drives down the cost of space access. Falcon 9 made history in 2012 when it delivered Dragon into the correct orbit for rendezvous with the International Space Station, making SpaceX the first commercial company ever to visit the station. Since then Falcon 9 has made numerous trips to space, delivering satellites to orbit as well as delivering and returning cargo from the space station for NASA. Falcon 9, along with the Dragon spacecraft, was designed from the outset to deliver humans into space and under an agreement with NASA, SpaceX is actively working toward this goal.
<table>
<h3 class="hero-head">Overview</h3>
<tr>
<th class="table-head">Height</th>
<td>70m / 229.6 ft</td>
</tr>
<tr>
<th class="table-head">Diameter</th>
<td>3.7m / 12ft</td>
</tr>
<tr>
<th class="table-head">Mass</th>
<td>549,054kg / 1,207,920 lb</td>
</tr>
<tr>
<th class="table-head">Payload to Mars</th>
<td>4,020kg / 8,860lb</td>
</tr>
</table>
</p>
</div>
<section class="rocket container">
<div class="left-block">
<div class="block">
<h1 class="highlight">Falcon9</h1>
<p>Falcon9 is a two-stage rocket designed and manufactured by SpaceX for the reliable and safe transport of satellites and the dragon spacecraft into orbit.</p>
</div>
<div class="block dragon">
<h2 class="highlight">Dragon Spacecraft</h2>
<p>Dragon carries cargo in the spacecraft's pressurized capsule and unpressurized trunk, which can also
accommodate secondary payloads. In the future, Dragon will carry astronauts in the pressurized
capsule as well.</p>
</div>
<div class="block composite">
<h2 class="highlight">COMPOSITE FAIRING</h2>
<p>The payload fairing is for the delivery of satellites to destinations in low Earth orbit (LEO),
geosynchronous transfer orbit (GTO) and beyond.</p>
</div>
<div class="block first-stage">
<h2 class="highlight">FIRST STAGE</h2>
<p>Falcon 9's first stage incorporates nine Merlin engines and aluminum-lithium alloy tanks containing
liquid oxygen and rocket-grade kerosene (RP-1) propellant.</p>
</div>
<div class="block capacity">
<div>
<h4 class="highlight">ENGINE</h4>
<h6>9</h6>
</div>
<div>
<h4 class="highlight">BURNTIME</h4>
<h6>162 <small>SEC</small></h6>
</div>
</div>
<div class="block capacity">
<div>
<h4 class="highlight">Thrust At Sea Level</h4>
<h6>7,607kN1</h6>
</div>
</div>
</div>
<div class="rocket-body">
<span class="first"><img src="./images/rocket1.png" alt="img1"></span>
<span class="second"><img src="./images/rocket2.png" alt="img2"></span>
<span class="third"><img src="./images/rocket3.png" alt="img3"></span>
</div>
<div class="right-block">
<div class="floating-graphics">
<img src="./images/bus.png" alt="">
</div>
<div class="block payload">
<h2>Payload</h2>
<p>Falcon 9 delivers payloads to space aboard the Dragon spacecraft or inside a composite fairing.</p>
</div>
<div class="block second-stage">
<h2 class="highlight">SECOND STAGE</h2>
<p>The second stage, powered by a single Merlin vacuum engine, delivers Falcon 9’s payload to the
desired orbit. For maximum reliability, the second stage has redundant igniter systems.</p>
</div>
<div class="block capacity">
<div>
<h4 class="highlight">ENGINE</h4>
<h6>1</h6>
</div>
<div>
<h4 class="highlight">BURNTIME</h4>
<h6>397 <small>SEC</small></h6>
</div>
</div>
<div class="block capacity single">
<div>
<h4 class="highlight">Thrust At Sea Level</h4>
<h6>934kN210</h6>
</div>
</div>
<div class="block engines">
<img src="./images/engines.png" alt="engine">
</div>
<div class="block marine">
<h2>NINE MARLINE ENGINES</h2>
<p>With its nine first-stage Merlin engines clustered together, Falcon 9 can sustain up to two engine
shutdowns during flight and still successfully complete its mission. Falcon 9 is the only launch
vehicle in its class with this key reliability feature.
</p>
</div>
</div>
</section>
<!-- ====== ATLASV ====== -->
<div class="hero-info">
<h1 class="hero-head">AtlasV</h1>
<p class="hero-desc">
<!-- Atlas V is an expendable launch vehicle most commonly used for launching satellites into geosynchronous orbit. Atlas V is operated by United Launch Alliance (ULA), a joint venture between Lockheed Martin and Boeing. Atlas V is a member of the Atlas family of rockets, which originated with the intercontinental ballistic missile (ICBM) developed in the late 1950s. It was later adapted into a space launch vehicle. Atlas V is the most powerful member of the Atlas family, and is one of the most reliable launch vehicles in the world. -->
The Atlas V rocket, born from the Atlas intercontinental ballistic missile program of the 1950s, has evolved into a pinnacle of reliability and adaptability in space launch technology. Operated by United Launch Alliance (ULA), a partnership between Lockheed Martin and Boeing, the Atlas V is renowned for its track record of successful launches and its ability to cater to a wide range of mission requirements. Equipped with a modular design, the Atlas V can be tailored to suit various payload sizes and mission profiles, whether launching satellites into geosynchronous orbit or facilitating interplanetary exploration. Its propulsion system, typically featuring the Russian-built RD-180 engine in the first stage, ensures efficient and precise delivery of payloads. Backed by rigorous quality assurance protocols and meticulous mission planning, ULA's commitment to safety and reliability underpins every Atlas V launch. This dedication has earned the rocket a reputation as one of the most dependable launch vehicles in the world. As space exploration ventures expand and evolve, the Atlas V remains a cornerstone of these endeavors, poised to continue its legacy of excellence in enabling scientific discovery and technological advancement beyond Earth's atmosphere.
<!-- <table>
<h3 class="hero-head">Overview</h3>
<tr>
<th class="table-head">Height</th>
<td>70m / 229.6 ft</td>
</tr>
<tr>
<th class="table-head">Diameter</th>
<td>3.7m / 12ft</td>
</tr>
<tr>
<th class="table-head">Mass</th>
<td>549,054kg / 1,207,920 lb</td>
</tr>
<tr>
<th class="table-head">Payload to Mars</th>
<td>4,020kg / 8,860lb</td>
</tr>
</table> -->
</p>
</div>
<section class="rocket container">
<div class="left-block">
<div class="block">
<h1 class="highlight">AtlasV</h1>
<p>The Atlas V rocket, standing as a symbol of reliability and adaptability in space launch technology, is operated by United Launch Alliance (ULA) and renowned for its versatility in delivering payloads to a variety of orbits, including geosynchronous orbit and interplanetary destinations such as Mars. </p>
</div>
<div class="block dragon">
<h2 class="highlight">Main Engine</h2>
<p>Delivering more than 860,000 pounds of thrust at liftoff and an impressive range of continuous throttling capability, the RD-180 main engine is a powerful combination of innovation and performance. Designed and manufactured by NPO Energomash, the liquid oxygen/liquid kerosene, two-thrust-chamber RD-180 engine is a complete propulsion unit equipped with hydraulics for control valve actuation and thrust vector gimbaling, pneumatics for valve actuation and system purging, and a thrust frame to distribute loads.</p>
</div>
<div class="block composite">
<h2 class="highlight">Solid Rocket Boosters</h2>
<p>When missions demand additional thrust at liftoff, Atlas integrates up to three Aerojet Rocketdyne solid rocket boosters (SRBs) on the Atlas V 400 series launch vehicle and up to five SRBs on the Atlas V 500 series vehicles.</p>
</div>
<!-- <div class="block first-stage">
<h2 class="highlight">FIRST STAGE</h2>
<p>Falcon 9's first stage incorporates nine Merlin engines and aluminum-lithium alloy tanks containing
liquid oxygen and rocket-grade kerosene (RP-1) propellant.</p>
</div> -->
<div class="block capacity">
<div>
<h4 class="highlight">Fuel/Oxidizer</h4>
<h6>Liquid Oxygen</h6>
</div>
<div>
<h4 class="highlight">Burn Time</h4>
<h6>88.3<small>sec</small></h6>
</div>
</div>
<div class="block capacity">
<div>
<h4 class="highlight">Peak Vacuum Thrust</h4>
<h6>380,000 lbs</h6>
</div>
</div>
</div>
<div class="rocket-body-atlas">
<span class="first"><img src="./images/Atlas_401-removebg-preview.png" alt="img1"></span>
<!-- <span class="second"><img src="/images/atlas2.png" alt="img2"></span>
<span class="third"><img src="/images/atlas3.png" alt="img3"></span> -->
</div>
<div class="right-block">
<div class="block payload">
<h2>PAYLOAD FAIRINGS</h2>
<p>The payload fairing (PLF) provides a controlled, safe environment for spacecraft during ascent. All ULA PLFs are configured for off-pad payload encapsulation to enhance payload safety and security and minimize on-pad time.</p>
</div>
<div class="block second-stage">
<h2 class="highlight">Upper Stage</h2>
<p>The Atlas V Centaur upper stage is powered by the RL10C and can be configured with either one or two engines.</p>
</div>
<div class="block capacity">
<div>
<h4 class="highlight">Nominal Thrust</h4>
<h6>22,900 lbs</h6>
</div>
<div>
<h4 class="highlight">Fuel/Oxidizer</h4>
<h6>Liquid Hydrogen</h6>
</div>
</div>
<div class="block capacity single">
<div>
<h4 class="highlight">Thrust At Sea Level</h4>
<h6>860,300lbs</h6>
</div>
</div>
<div class="block atlasV-engine">
<img src="./images/atlasv_engine.jpg" alt="engine">
</div>
<!-- <div class="block marine">
<h2>NINE MARLINE ENGINES</h2>
<p>With its nine first-stage Merlin engines clustered together, Falcon 9 can sustain up to two engine
shutdowns during flight and still successfully complete its mission. Falcon 9 is the only launch
vehicle in its class with this key reliability feature.
</p>
</div> -->
</div>
</section>
<!-- ====== FOOTER ====== -->
<footer class="footer">
<div class="footer-container">
<div class="footer-row">
<div class="footer-col">
<ul>
<a href="#" id="" class="logo"><img src="../images/space-logo-removebg-preview.png" alt="cosmo-logo"></a>
</ul>
</div>
<div class="footer-col">
<ul>
<li><a href="/" id="">Home</a></li>
<li><a href="./solar-system-explore" id="">Explore Space</a></li>
<li><a href="./cosmic-blast" id="">Games</a></li>
<li><a href="./rockets" id="">Rockets</a></li>
<li><a href="./blogs" id="">Blogs</a></li>
<li><a href="/#theories" id="">Theories</a></li>
<li><a href="/#missions" id="">Missions</a></li>
</ul>
</div>
<div class="footer-col social-links ">
<ul>
<li><a href="" id="social">Instagram</a></li>
<li><a href="" id="social">Facebook</a></li>
<li><a href="" id="social">Twitter</a></li>
<li><a href="./about">About Us</a></li>
</ul>
</div>
<div class="footer-col">
<div class="newsletter">
<form action="/subscribe" method="POST">
<!-- <p>Subscribe to our newsletter</p> -->
<label for="newsletter_email"><p>Subscribe to our newsletter</p></label>
<input type="email" placeholder="Enter your email" name="email" id="email">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</div>
</div>
<div class="copyright">
<p>© 2024 Cosmic Chronicles. All rights reserved.</p>
</div>
</footer>
<script src="js/header.min.js"></script>
<script src="js/top-scroll.min.js"></script>
</body>
</html>