-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrocery.html
75 lines (71 loc) · 2.21 KB
/
grocery.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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="grocery.css">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grocery List</title>
<header>
<h1>Andrew's Very Organized Grocery List</h1>
</header>
</head>
<body>
<h2 class="Pantryhead">PANTRY ITEMS</h2>
<section class="Pantry">
<div class="Div1">
<article class="Canned">
<h3>Canned</h3>
<ul>
<li>Corn</li>
<li>Tuna</li>
<li>Green Beans</li>
<li>Beans</li>
</ul>
</article>
</div>
<div class="Div2">
<article class="Dry Goods">
<h3>Dry Goods</h3>
<ul>
<li>Rice</li>
<li>Lentils</li>
<li>Oats</li>
<li>Pancake Mix</li>
</ul>
</article>
</div>
</section>
<div id="image1">
<img src="https://a.storyblok.com/f/158954/6113x3968/f3e2759bda/4384f5_05a267a806fa466c8dcc213ecbc50d15_mv2.jpeg/m/2048x1329/filters:quality(75)" alt="writing list">
</div>
<h2 class="Freezerhead">FREEZER ITEMS</h2>
<section class="Freezer"></section>
<div class="Div3">
<article class="Veggies">
<h3>Veggies</h3>
<ol>
<li>Broccoli</li>
<li>Carrots</li>
<li>Cauliflower</li>
<li>Bell Peppers</li>
</ol>
</article>
</div>
<div class="Div4">
<article class="Snacks">
<h3>Snacks</h3>
<ol>
<li>Chicken Nuggets</li>
<li>Hot Pockets</li>
<li>Fries</li>
<li>Tater Tots</li>
</ol>
</article>
</div>
</section>
<div id="image2">
<img src="https://thumbs.dreamstime.com/z/writing-grocery-list-28077804.jpg?w=400" alt="groceries" width="310" height="140" >
<span style="vertical-align:middle">
</div>
</body>
</html>