-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathblueberries.html
81 lines (70 loc) · 3 KB
/
blueberries.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
<!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/index.css">
<link rel="stylesheet" type="text/css" href="resources/css/breadcrumb.css">
<link rel="stylesheet" type="text/css" href="resources/css/styled-breadcrumb.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="https://s3.amazonaws.com/codecademy-content/courses/ui-breadcrumbs/logo.svg"></a>
</div>
<div class="search-bar">
<input type="text" name="search" placeholder="Search for items">
<a href="" class="button"><img
src="https://s3.amazonaws.com/codecademy-content/courses/ui-breadcrumbs/search.svg"></a>
</div>
<a href="" class="button cart">Cart <img
src="https://s3.amazonaws.com/codecademy-content/courses/ui-breadcrumbs/cart.svg"></a>
</header>
<!-- Breadcrumbs Section -->
<ul class="breadcrumb">
<li class="location"><a href="#">Shop</a></li>
<li class="location"><a href="#">Groceries</a></li>
<li class="location"><a href="#">Blueberries</a></li>
<li class="attribute"><a href="#">Organic</a></li>
</ul>
<!-- Hero Section -->
<div id="main" class="landing">
<div class="blueberry hero">
<h2>Organic Blueberries - $3.99/each</h2>
<p>These blueberries are grown at a sustainable farm in the pacific northwest.</p>
<p>This superfood is a great addition to any pancake or dessert.</p>
</div>
</div>
<!-- Footer -->
<footer>
<img src="https://s3.amazonaws.com/codecademy-content/courses/ui-breadcrumbs/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>