-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
105 lines (62 loc) · 3.23 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
<!doctype html>
<html class="no-js" 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" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>About</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<script src="https://kit.fontawesome.com/7b1f6b431b.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="row">
<div class="row">
<div class="title-bar" data-responsive-toggle="responsive-menu" data-hide-for="medium">
<button class="menu-icon" type="button" data-toggle="responsive-menu"></button>
<div class="title-bar-title">Menu</div>
</div>
<div class="top-bar" id="responsive-menu">
<ul class="dropdown menu" data-dropdown-menu>
<li>
<a href="index.html" class="clickable-navbar-link">Home</a>
</li>
<li>
<a href="about.html"" class="clickable-navbar-link">About</a>
</li>
</ul>
</div>
</div>
</div>
<div class="callout large">
<h3>Hello Fellow Beer Connoisseur!</h3>
<p> We are very pleased to bring you Brewery Finder! Thank you for visiting us and I hope you enjoy many breweries that you stumble upon. We are a team of three that are all currently involved in the University of Pennsylvania's Coding Bootcamp. We are well under our way to becoming Full Stack Web Developers and are pleased to have you on our journey! Below you will find a way to contact us! We are not afraid of feedback or check out other projects we have done. Thank You!</p>
</div>
<div class="callout primary">
<h5>The Brew Masters</h5>
<h6>Below is our GitHub links!</h6>
<a href="https://github.com/laurenbrown108" target="_blank">Lauren Brown</a>
<br>
<a href="https://github.com/rsg71" target="_blank">Robert Greenawalt</a>
<br>
<a href="https://github.com/Lambaa94" target="_blank">James Lamb</a>
<br>
<i class="fab fa-github-square fa-3x"></i>
</div>
<!-- Compressed CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css" integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I=" crossorigin="anonymous">
<!-- Compressed JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js" integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.min.js"></script>
<link rel="stylesheet" href="style.css">
<script>
$(document).foundation();
</script>
</body>
</html>
</body>
</html>