-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.html
90 lines (81 loc) · 3.52 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
<!DOCTYPE html>
<html>
<head>
<title>FreshDeals</title>
<link rel="stylesheet" type="text/css" href="resources/css/reset.css">
<link rel="stylesheet" type="text/css" href="resources/css/base.css">
<link rel="stylesheet" type="text/css" href="resources/css/about.css">
<link href="https://fonts.googleapis.com/css?family=PT+Serif:700" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Header -->
<header>
<div class="image-container">
<a href="index.html"><img src="resources/img/logo.svg"></a>
</div>
<div class="search-bar">
<input type="text" name="search" placeholder="Search for items">
<a href="" class="button"><img src="resources/img/search.svg"></a>
</div>
<a href="" class="button cart">Cart <img src="resources/img/cart.svg"></a>
</header>
<nav>
<a href="deals.html">Today's Deals</a>
<a href="bestsellers.html">Bestsellers</a>
<a href="about.html">About Us</a>
<a href="sell.html">Sell</a>
<a href="#">Help</a>
</nav>
<!-- About Section -->
<div id="main" class="about">
<h1>FreshDeals</h1>
<div class="information">
<h3>About FreshDeals</h3>
<p>
Most of our users ask us, why are you called FreshDeals? We like to chuckle at that question because
it seems so obvious to us. The freshest deals at the freshest prices. Simple as that. We were
founded on this belief and it helps guide every decision we make day in and day out.
</p>
<p>
Well there's one other reason we're called FreshDeals: our fearless founders. We were created as a
pop-and-pop shop in 1912 by two young entrepeneurs: Johnny Fresh and Punxutawney Deal. Since those
days, we've scaled to serve organic ingredients to the entire world. Though Johnny and Punx no
longer run FreshDeals, we are commited to keeping their dream alive. We hope you've enjoyed your
experiences with FreshDeals over the past decades. We're excited to show you how much more we can do
as we continue to grow!
</p>
<div class="join">
<h3>Join Our Team</h3>
<a href="jobs.html" class="button">View Our Job Listings</a>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<img src="resources/img/logo.svg">
<div class="links">
<h4>Get to know us</h4>
<a href="#">About us</a>
<a href="jobs.html">Jobs</a>
<a href="#">Investor relations</a>
<a href="#">Link</a>
</div>
<div class="links">
<h4>Make money with us</h4>
<a href="sell.html">Sell on FreshDeals</a>
<a href="#">Become a vendor</a>
<a href="#">Fundraiser events</a>
<a href="#">Community outreach</a>
</div>
<div class="links">
<h4>Help</h4>
<a href="#">Contact us</a>
<a href="#">Conditions of use</a>
<a href="#">Report a problem</a>
<a href="#">Privacy Policy</a>
</div>
</footer>
</div>
</body>
</html>