-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
40 lines (33 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>Meet Me Halfway</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div id="header" class="text-center jumbotron">
<h1>Meet Me Halfway</h1>
</div>
<div id="main-box" class="text-center jumbotron">
<div id="blurb">
<p>Welcome to Meet Me Halfway, an application that brings friends and loved ones together from anywhere in the
U.S.
<br> Simply enter your location and that of the person you wish to connect with and our application will
find the midpoint between your two locations and return three potential cities for you to meet up in.
We then offer a total price of the cheapest airline tickets for each party to reach your chosen destination.</p>
</div>
<div id="links">
<a href="about.html">About</a>
<br>
<a href="login.html">Login</a>
<br>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</body>
</html>