-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (74 loc) · 2.21 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cirlces</title>
<link rel="stylesheet" href="style.css">
</head>
<h1>My Very Organized Grocery List</h1>
<body>
<h1>PANTRY ITEMS</h1>
<hr>
<div class="container">
<!-- CANNED FOODS -->
<div class="canned-box">
<h2 style="color: rebeccapurple"><b>CANNED FOODS</b></h2>
<ul class="text-list">
<li>Corn</li>
<li>Peas</li>
<li>Green Beans</li>
<li>Dog Food</li>
</ul>
</div>
<!-- DRY FOODS -->
<div class="dry-box">
<h2 style="color: darkblue;"><b>DRY FOODS</b></h2>
<ul class="text-list">
<li>Corn</li>
<li>Peas</li>
<li>Green Beans</li>
<li>Dog Food</li>
</ul>
</div>
<div class="empty-box">
<p><img src="images/canned-foods-benefits.webp" alt="canned foods">Canned FOods</p>
</div>
<div class="empty-box">
<p><img src="images/dry foods.webp" alt="dry foods">Dry Foods</p>
</div>
</div>
<hr>
<h1>FREEZER ITEMS</h1>
<hr>
<div class="container">
<!-- VEGGIES -->
<div class="veggie-box">
<h2><b>VEGGIES</b></h2>
<uul class="text-list">
<li>Broccoli</li>
<li>Cauliflower</li>
<li>Carrots</li>
<li>Spinach</li>
</ul>
</div>
<!-- SNACKS -->
<div class="snack-box">
<h2><b>SNACKS</b></h2>
<ul class="text-list">
<li>Snickers</li>
<li>Potato Chips</li>
<li>Candy</li>
<li>Ice Cream</li>
</ul>
</div>
<div class="empty-box">
<p><img src="images/veggies.jpg" alt="veggies">VEGGIES</p>
</div>
<div class="empty-box">
<p><img src="images/snacks.jpg" alt="snacks">SNACKS</p>
</div>
</div>
</div>
</body>
</html>