-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
125 lines (125 loc) · 4.83 KB
/
about.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
<!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="./assets/style.css" />
<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=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap"
rel="stylesheet"
/>
<title>About Fiacs</title>
</head>
<body class="about">
<div class="social-header">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#">Sign In</a></li>
</ul>
</div>
<div class="menu-btn">
<div class="burger">
</div>
</div>
<nav>
<ul class="main-menu">
<li class="logo">
<a href="./index.html"
><img src="./images/FIAC-logo-2X.png" alt="fiac logo"
/></a>
</li>
<li class="home"><a href="./index.html">Home</a></li>
<li><a href="./index.html#organizers">Organizers</a></li>
<li><a href="./index.html#program">Program</a></li>
<li><a href="./index.html#speakers">Speakers</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</nav>
<div class="bread-crumb"><p></p></div>
<header class="about">
<h2>"Ready for First Contact!"</h2>
<h1>FIRST INTERPLANETARY ARRIVAL CONFERENCE</h1>
<hr class="header-hr">
<div class="about-text">
<p>
Our first contact with outer world civilizations! Thanks to our partner agencies around the globe, we are able to make the first-ever extraterrestrial conference. They say they are coming in peace. They assure us they want to help us become a better civilization. Will they teach us new technologies? Will we be able to communicate with them through our expert interpreters? Are you ready? Sign up and hold on tight!
</p>
</div>
<div class="contact">
<p>
Please contact us per Email for any further questions about our First Interplanetary Arrival Conference 2022!
</p>
<p class="email">fiacs2022@globalsecurity.org</p>
</div>
</header>
<section class="about-logo">
<div>
<h2 class="the-logo">First Interplanetary Arrival Conference Logo</h2>
</div>
<hr class="logo-hr" />
<div class="text">
The logo of the First Interplanetary Arrival Conference was imposed by us by the Legal Ambassador of Atlkaya-Mirbukia Tuloska Galaxy Ring.
</div>
<div class="logo">
<img src="./images/FIAC-logo-2X.png" alt="FIAC logo" />
</div>
</section>
<hr class="between-sections" />
<section class="about-planning">
<div>
<h2 class="possible">How this event was made possible?</h2>
</div>
<hr class="planning-hr" />
<div class="text">
Take a look at the planning that went into the making of the one in a
lifetime event. First contact with extraterrestrial beings is no easy
task to plan!
</div>
<div class="videos-wrapper">
<div class="video v1">
<h2>First Contact</h2>
<p>When SETI Contacted NASA and Everything Began</p>
</div>
<div class="video v2">
<h2>UNSC Communication</h2>
<p>United Nations Security Council Planning with Intergallactic Beings</p>
</div>
</div>
</section>
<section class="organizers">
<h2>Organizers</h2>
<hr class="organizers-hr" />
<div class="organizers-wrapper">
<img
src="./images/sponsor-logos/china_national_space_administration_logo.png"
alt=""
/>
<img src="./images/sponsor-logos/esa-logo.png" alt="european space agency" />
<img src="./images/sponsor-logos/nasa-logo.png" alt="nasa" />
<img src="./images/sponsor-logos/seti-institute-logo.png" alt="seti" />
<img src="./images/sponsor-logos/spacex-logo.png" alt="spacex" />
<img
src="./images/sponsor-logos/united_states_space_force_logo.png"
alt="us air force"
/>
<img src="./images/sponsor-logos/unsc-logo.png" alt="united nations security council" />
</div>
</section>
<footer>
<div class="logo">
<img class="logo-img" src="./images/FIAC-logo-2X.png" alt="FIAC logo" />
</div>
<div class="copy">
<p>
2022 First Interplanetary Arrival Conference. Some Rights Reserved.
</p>
</div>
</footer>
<script src="./assets/main.js" type="module"></script>
<script src="https://kit.fontawesome.com/e422b1318e.js" crossorigin="anonymous"></script>
</body>
</html>