-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (94 loc) · 2.83 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
95
96
97
98
99
100
<html lang="en">
<head>
<title>Grocery List</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
background-color: #e6e8e6;
}
</style>
</head>
<body>
<h1> My Grocery List</h1>
<section>
<h2 style="background-image: url(./images/produce.webp);"><span>Produce</span></h2>
<ul class="produce">
<h3 style="background-image: url(./images/produce.webp);"> <span>Fruits</span> </h3>
<li>Apples</li>
<li>Bananas</li>
<li>Oranges</li>
<img src="./images/peach.webp" alt="peaches" style="padding-top: 10px; height: 50px; width: 80px;">Peaches
</ul>
<ul class="produce">
<h3 style="background-image: url(./images/produce.webp);"> <span>Vegetables</span> </h3>
<li>Onions</li>
<li>Eggplants</li>
<li>Squash</li>
<li>Cabbage</li>
<li>Potatoes</li>
</ul>
</section>
<section>
<h2 style="background-image: url(./images/pantry.jpg);"><span>Pantry</span></h2>
<ul class="pantry">
<h3 style="background-image: url(./images/pantry.jpg);"><span>Canned</span></h3>
<li>Beans</li>
<li>Tomato Sauce</li>
<li>Condensed Milk</li>
<li>Anchovies</li>
<li>Sliced Peaches</li>
<li>Soup</li>
</ul>
<ul class="pantry">
<h3 style="background-image: url(./images/pantry.jpg);"><span>Dry Goods</span></h3>
<li>Chickpeas</li>
<li>Rice</li>
<li>Pasta</li>
<li>Bento Flakes</li>
<li>Panko</li>
<li>Baking Flour</li>
</ul>
<ul class="pantry">
<h3 style="background-image: url(./images/pantry.jpg);"><span>Snacks</span></h3>
<li>Twinkies</li>
<li>Cereal</li>
<li>Trail Mix</li>
<li>Fruit Snacks</li>
</ul>
</section>
<section>
<h2 style="background-image: url(./images/ice.jpg);"><span>Frozen</span></h2>
<ol class="frozen">
<h3 style="background-image: url(./images/ice.jpg);"> <span>Meals</span> </h3>
<li>Orange Chicken</li>
<li>Cheese Pizza</li>
<li>Fried Rice</li>
<li>Chicken Pot Pie</li>
</ol>
<ul class="frozen">
<h3 style="background-image: url(./images/ice.jpg);"> <span>Vegetables</span> </h3>
<li>Peas</li>
<li>Okra</li>
<li>Corn</li>
<li>Brussel Sprouts</li>
<li>Spinach</li>
</ul>
</section>
<section>
<h2 style="background-image: url(./images/dairy.jpg);"><span>Dairy</span></h2>
<div class="container">
<ol class="dairy">
<li>Whole Milke</li>
<li>Cheddar Cheese</li>
<li>Sour Cream</li>
<li>Eggs</li>
</ol>
<img src="./images/cow.webp" alt="cow" style="padding-left: 200px; display: flex; width: 165; height: 110;">
</div>
</section>
<!--Very important copyright statement-->
<footer>
<p> Copyright © 2024 Rythmat. All Rights Reserved </p>
</footer>
</body>
</html>