-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
113 lines (94 loc) · 4.69 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
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>lifeTravel</title>
<link href="https://fonts.googleapis.com/css?family=Proza+Libre" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<nav class="nav blue-grey darken-1">
<a href="index.html" class="logo">lifeTravel
</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="travel-checklist.html">Checklist</a></li>
<li><a href="https://www.google.com/flights/">Search Flights</a></li>
<li><a href="about.html">About lifeTravel</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html">Home</a></li>
<li><a href="travel-checklist.html">Checklist</a></li>
<li><a href="https://www.google.com/flights">Search Flights</a></li>
<li><a href="about.html">About lifeTravel</a></li>
</ul>
<script>$(".button-collapse").sideNav();</script>
</div>
</nav>
<div class="container">
<header class="row">
<div class="col s12">
<div class="card">
<div class="card-image">
<img src="assets/images/pexels-photo-386009.jpeg">
</div>
<div class="card-content">
<p>
<h1>About lifeTravel</h1>
Envision your perfect trip... There's no such thing because life is unpredictable and there are things that are out of our control. However, what we can control is how we manage our time and detail our plans, and that's where lifeTravel comes in to help you.
<br/>
<br>
lifeTravel was created for users who are on-the-go, covering the requirements for traveling. However spontaneous we can be, we also need to prepare before we get on an airplane, and that is lifeTravel's mission. We are here to serve the adventurous spirit by allowing users to book flights, check the currency, air quality, and weather of a city/country, and mark off a packing checklist—all in one place!
</p>
<br>
<hr>
<h1>About the Developers</h1>
<p>
lifeTravel was developed by Summiyah Siddeeq, Juanita Pinkney-Barrier, Michelle Johnson, and Keli Chau. It was created as a project for the Georgia Institute of Technology's Coding Bootcamp Program.
<br/>
<br>
The travel app was designed to be mobile-friendly for users on-the-go, with Bootstrap and Materialize CSS. In the future, the app will be updated with flight search and immunization requirements with API integration.
</p>
</div>
</div>
</div>
<footer class="page-footer blue-grey darken-1">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text"></h5>
<p class="grey-text text-lighten-4"></p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text"></h5>
<ul>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
©
<script language="javascript" type="text/javascript">
var today = new Date();
var year = today.getFullYear();
document.write(year);
</script>
LifeTravel. All Rights Reserved.
</div>
</div>
</footer>
</div>
</body>
</html>