-
Notifications
You must be signed in to change notification settings - Fork 0
/
want_to_believe.html
252 lines (228 loc) · 9.22 KB
/
want_to_believe.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
<!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">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- JS Video Player CDN -->
<link href="https://vjs.zencdn.net/7.17.0/video-js.css" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Font Awesome CDN -->
<script src="https://kit.fontawesome.com/89d5bab957.js" crossorigin="anonymous"></script>
<!-- External Css -->
<link rel="stylesheet" href="/assets/css/style.css">
<title>Alien911</title>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navbar -->
<!-- <nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top"> -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">Alien911</a>
<!-- Navbar Bars Button -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class=""><i id="hamburger_icon" class="fas fa-bars"></i></span>
</button>
<!-- Navbar Links -->
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ms-auto">
<a class="nav-link ms-auto hover-underline-animation" href="about_us.html">About Us</a>
<a class="nav-link ms-auto hover-underline-animation" href="ufo_footage.html">UFO Footage</a>
<a class="nav-link ms-auto hover-underline-animation" href="ufo_images.html">UFO Images</a>
<a class="nav-link ms-auto hover-underline-animation" href="ufo_reports.html">UFO Reports</a>
<a class="nav-link ms-auto hover-underline-animation" href="contact_us.html">Contact Us</a>
<!-- Dropdown Menu -->
<li class="nav-item dropdown ms-auto">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
More
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="faq.html">F.A.Q</a></li>
<li><a class="dropdown-item" href="terms_of_use.html">Terms Of Use</a></li>
</ul>
</li>
<!-- Subscribe Button -->
<button type="button" class="btn btn-link link ms-auto"><a href="subscribe_y.html"
class="link">Subscribe</a></button>
</div>
</div>
</div>
</nav>
<!-- Hero Image -->
<section id="hero_image" class="">
<div class="row">
<div class="col-12">
<!-- Background Image Inserted Here -->
</div>
</div>
</section>
<!-- Horizontal Line -->
<!-- <div class="container">
<hr>
</div> -->
<!-- Footer -->
<footer class="bg-dark text-center text-white">
<!-- Grid container -->
<div class="container p-4">
<!-- Line break -->
<br>
<!-- Section: Form -->
<section class="">
<!-- Newsletter signup form -->
<form action="">
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!--Grid column-->
<div class="col-auto">
<p class="pt-2">
<strong>Sign up for our newsletter</strong>
</p>
</div>
<!--Grid column-->
<div class="col-md-5 col-12">
<!-- Email input -->
<div class="form-outline form-white mb-0">
<input type="email" id="form5Example21" class="form-control" />
<label class="form-label" for="form5Example21">Email address</label>
</div>
</div>
<!--Grid column-->
<div class="col-auto">
<!-- Submit button -->
<button type="submit" class="btn btn-outline-light mb-4">
Subscribe
</button>
</div>
</div>
</form>
</section>
<!-- Horizontal line -->
<hr class="mt-0">
<!-- About Alien911 text -->
<section class="mb-4">
<p>
Aliens 911 is a database of Unidentified Flying Object (UFO) sightings. We're starting with the British UFO
sighting location data from the UK's Ministry of Defence's (MOD) unclassified Records of UFO Sightings data
(GPS data). Here you'll see Distribution Maps of those sightings in England, Scotland or Wales. We're
currently working on the Worldwide data and it will be coming soon!
</p>
</section>
<!-- Section: Links -->
<section class="">
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div class="col-lg-4 col-md-4 mb-4 mb-md-0">
<!-- Navigate Col 1 -->
<h5 class="text-uppercase"><u>Navigate</u></h5>
<!-- Navigate Links -->
<ul class="list-unstyled mb-0">
<li>
<a href="#!" class="text-white text-decoration-none">UFO Reports</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">UFO Images</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">UFO Footage</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">UFO History</a>
</li>
</ul>
</div>
<!--Grid column-->
<div class="col-lg-4 col-md-4 mb-4 mb-md-0">
<!-- Navigate Col 2 -->
<h5 class="text-uppercase"><u>Navigate</u></h5>
<!-- Navigate Links -->
<ul class="list-unstyled mb-0">
<li>
<a href="#!" class="text-white text-decoration-none">F.A.Q</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">Terms Of Use</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">Contact Us</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">Support</a>
</li>
</ul>
</div>
<!--Grid column-->
<div class="col-lg-4 col-md-4 mb-4 mb-md-0">
<!-- Navigate Col 3 -->
<h5 class="text-uppercase"><u>Connect</u></h5>
<!-- Navigate Links -->
<ul class="list-unstyled mb-0">
<li>
<a href="#!" class="text-white text-decoration-none">
<i class="fab fa-facebook-f footer_social_icon"></i> Facebook
</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">
<i class="fab fa-linkedin-in"></i> LinkedIn
</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">
<i class="fab fa-instagram footer_social_icon"></i> Instagram
</a>
</li>
<li>
<a href="#!" class="text-white text-decoration-none">
<i class="fas fa-envelope"></i> Email
</a>
</li>
</ul>
</div>
</div>
</section>
</div>
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
<p class="mb-0">
- Copyright© 2023 ARCHI Information Systems | All rights reserved -
</p>
<p>
<a href="https://stephens-portfolio.com/" class="text-decoration-none github_link text-white" target="_blank">-
Website designed By Stephen Mc Govern -
</a>
</p>
</div>
</footer>
<!-- JS for navbar background color change -->
<script>
$(function () {
$(document).scroll(function () {
var $nav = $(".fixed-top");
$nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height());
});
});
</script>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<!-- External JS file-->
<script src="/assets/JavaScript/app.js"></script>
</body>
</html>