-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Grocery List</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1 class="h1">My Grocery List</h1>
<h2 class="h2">Pantry Items</h2>
<div class="box">
<h3 class="h3">CANNED</h3>
<ul>
<li>Corn</li>
<li>Tuna</li>
<li>Green Beans</li>
<li>Beans</li>
</ul>
</div>
<div class="box">
<h3 class="h3">DRY GOODS</h3>
<ul>
<li>Rice</li>
<li>Lentils</li>
<li>Oats</li>
<li>Pancake Mix</li>
</ul>
</div>
<div style="display: inline-block; height: 150px; margin-top: 15">
<img src="/block06/images/pantry.webp" alt="" width="150x" />
</div>
<div>
<h2 class="h2">Freezer Items</h2>
<div class="box">
<h3 class="h3">VEGIES</h3>
<ol>
<li>broccoli</li>
<li>Carrots</li>
<li>cauliflower</li>
<li>Bell Peppers</li>
</ol>
</div>
<div class="box">
<h3 class="h3">SNACKS</h3>
<ol>
<li>Chicken Nuggets</li>
<li>Hot Pockets</li>
<li>Fries</li>
<li>Tator Tots</li>
</ol>
</div>
<div style="display: inline-block; height: 150px; margin-top: 15">
<img src="/block06/images/frozen.jpg" alt="" height="150x" />
</div>
</div>
</body>
</html>