-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 2.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="widli=device-widli, initial-scale=1.0">
<title>My Grocery List</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Londrina+Sketch&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Londrina+Sketch&display=swap" rel="stylesheet">
</head>
<body>
<div style="margin-top: 20px;">
<h1 style="font-family: Londrina Sketch; color: #022B3A; background-color: #BFDBF7; display: inline; padding: 10px 20px; border-radius: 20px;">My Very Organized Grocery List</h1>
</div>
<section>
<h2>Pantry Items</h2>
<div>
<ul>
<h3>Canned</h3>
<li>Corn</li>
<li>Tuna</li>
<li>Green Beans</li>
<li>Beans</li>
</ul>
</div>
<div>
<ul>
<h3>Dry Goods</h3>
<li>Rice</li>
<li>Lentils</li>
<li>Oats</li>
<li>Pancake Mix</li>
</ul>
</div>
<img src="https://www.kroger.com/product/images/large/front/0001111080803" alt="Sweet Baby Rays Corn">
</section>
<section>
<h2>Freezer Items</h2>
<div>
<ul>
<h3>Veggies</h3>
<li>Carrots</li>
<li>Cauliflower</li>
<li>Bell Peppers</li>
<li>Broccoli</li>
</ul>
</div>
<div>
<ul>
<h3>Snacks</h3>
<li>Chicken Nuggets</li>
<li>Hot Pockets</li>
<li>Fries</li>
<li>Tator Tots</li>
</ul>
</div>
<img src="https://s7d6.scene7.com/is/image/bjs/266604" alt="Chees It's">
</section>
</body>
</html>