-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
86 lines (70 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Poiret+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Spartan&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Manrope&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" media="screen" href="style.css">
<link href='https://api.mapbox.com/mapbox-gl-js/v1.9.1/mapbox-gl.css' rel='stylesheet'>
<title>Eat Wild!</title>
</head>
<body>
<div class="container-fluid p-0">
<nav
class="navbar navbar-expand-sm navbar-expand-lg col-12 navbar-light bg-white shadow p-0" id="navlinks">
<a class="logo-link" href="index.html"><img class="logo mt-3 ml-4"
src="images/h&f-logo5.png"></a>
<div class="nav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white text-shadow" href="plants.html"><i class="fa fa-leaf pr-2"></i>plants</a>
</li>
<li class="nav-item">
<a class="nav-link text-white text-shadow" href="contact.html"><i
class="fa fa-envelope pr-2"></i>contact</a>
</li>
<li class="nav-item">
<a class="nav-link text-white text-shadow" href="about.html"><i
class="fa fa-tree pr-2"></i>about</a>
</li>
</ul>
</div>
</nav>
<div class="page-header about-header-box">About</div>
</div>
<div class="container col-10 p-3 mt-5 mb-5 shadow rounded">
<div class="row">
<div class="col-7">
<p class="pt-5 pl-3 pr-3 lead">
We are Lindsey, Abby, Lisa, Riley, and Megan, and while in a coding class together, we came up with the idea to create a foraging website that would show users on which hikes they could find certain edible plants. All five of us share a love of nature and wanted to create something that people like us would be excited to use. Hike & Forage Utah is a great resource for hungry foodies who are looking for an adventure! We hope our users enjoy this as much as we did making it.
</p>
<br><p class="text-center" style="font-size:30px;">Eat wild!</p>
</div>
<div class="col-5">
<img src="images/photo-1567755025984-63bb19fc5444.jpeg" class="img-thumbnail" alt="forage">
</div>
</div>
</div>
<footer class="container-fluid text-center border-0 rounded-0 pl-0 pr-0 pt-4 pb-4 shadow">
<a href=""><i class="fa fa-facebook-official p-1"></i></a>
<a href=""><i class="fa fa-instagram p-1"></i></a>
<a href=""><i class="fa fa-pinterest p-1"></i></a>
<a href="https://github.com/lindseypaluso/project1"><i class="fa fa-git p-1"></i></a>
</footer>
</div>
<script src='https://api.mapbox.com/mapbox-gl-js/v1.9.1/mapbox-gl.js'></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
</body>
</html>