-
Notifications
You must be signed in to change notification settings - Fork 287
/
index.html
50 lines (46 loc) · 1.24 KB
/
index.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
<!DOCTYPE html>
<html 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" />
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/index.css" />
<title>Greengrocers</title>
<script defer src="index.js"></script>
</head>
<body>
<header id="store">
<h1>Greengrocers</h1>
<ul class="item-list store--item-list">
<!-- Take a look at store-item.html -->
</ul>
</header>
<main id="cart">
<h2>Your Cart</h2>
<div class="cart--item-list-container">
<ul class="item-list cart--item-list">
<!-- Take a look at cart-item.html -->
</ul>
</div>
<div class="total-section">
<div>
<h3>Total</h3>
</div>
<div>
<span class="total-number">£0.00</span>
</div>
</div>
</main>
<div>
Icons made by
<a href="https://www.flaticon.com/authors/icongeek26" title="Icongeek26">
Icongeek26
</a>
from
<a href="https://www.flaticon.com/" title="Flaticon">
www.flaticon.com
</a>
</div>
</body>
</html>