-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
58 lines (58 loc) · 2.51 KB
/
Copy pathabout.html
File metadata and controls
58 lines (58 loc) · 2.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Us</title>
<link rel="icon" type="image/jpg" href="images/cornucopia-favicon-32px.png">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/aboutus.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Handlee|Merienda|Neucha|Over+the+Rainbow|Rock+Salt|Satisfy|Shadows+Into+Light|Simonetta" rel="stylesheet">
</head>
<body>
<header>
<h1 class="header-title">
Shopping List Builder
</h1>
<h3 class="thanksgiving-edition">~Thanksgiving Edition~</h3>
<nav>
<hr>
<ul>
<li><a href="./index.html">RECIPES</a></li>
<li><a href="./menu.html">SELECTED MENU</a></li>
<li><a href="./list.html">SHOPPING LIST</a></li>
<li><a href="./about.html">ABOUT US</a></li>
</ul>
<hr>
</nav>
</header>
<div class="photo-break">
<img src="images/fruit-banner.png" alt="Fruit Banner">
</div>
<div>
<hr>
<h2>OUR AMAZING TEAM!</h2>
<hr>
</div>
<div class="team-images">
<ul>
<li><p>ANTHONY</p><img src="./images/aboutUs/anthony.png" alt="picture of Anthony"><a href="https://www.linkedin.com/in/anthonytriplett/" target = "_blank">LinkedIn</a></li>
<li><p>ERIN</p><img src="./images/aboutUs/erin.png" alt="picture of Erin"><a href="https://www.linkedin.com/in/erin-trainor-357301a1/" target = "_blank">LinkedIn</a></li>
<li><p>JULIE</p><img src="./images/aboutUs/julie.png" alt="picture of Julie"><a href="https://www.linkedin.com/in/julie-ly-/" target = "_blank">LinkedIn</a></li>
<li><p>LORIN</p><img src="./images/aboutUs/lorin.png" alt="picture of Lorin"><a href="https://www.linkedin.com/in/lorin-stewart-b02762157/" target = "_blank">LinkedIn</a></li>
<li><p>XOCHIL</p><img src="./images/aboutUs/xochil.jpg" alt="picture of Xochil"><a href="https://www.linkedin.com/in/xochilsquaglia/" target = "_blank">LinkedIn</a></li>
</ul>
</div>
<hr>
<div class="photo-break">
<img src="images/fruit-banner.png" alt="Fruit Banner">
</div>
<hr>
</body>
<footer>
<p>COPYRIGHT</p>
<p>Anthony, Erin, Julie, Lorin, Xochil</p>
<p>Codefellows 201 - November 2018</p>
</footer>
</html>