-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgrocery_checklist.html
More file actions
57 lines (50 loc) · 2.24 KB
/
Copy pathgrocery_checklist.html
File metadata and controls
57 lines (50 loc) · 2.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Shopping Checklist</title>
<style>
body { font-family: sans-serif; line-height: 1.5; padding: 1rem; }
h2 { margin-top: 1.5rem; }
label { display: block; margin: 0.15rem 0; cursor: pointer; }
</style>
</head>
<body>
<h1>Shopping Checklist</h1>
<h2>🥦 Produce</h2>
<label><input type="checkbox"> Yellow onions (2–3)</label>
<label><input type="checkbox"> Green onions / scallions</label>
<label><input type="checkbox"> Hot red chili pepper</label>
<label><input type="checkbox"> Green beans</label>
<label><input type="checkbox"> Broccoli (1 small head)</label>
<label><input type="checkbox"> Red bell pepper</label>
<label><input type="checkbox"> Mung bean sprouts</label>
<label><input type="checkbox"> Fresh cilantro</label>
<label><input type="checkbox"> Limes (2–3)</label>
<label><input type="checkbox"> Tomato</label>
<label><input type="checkbox"> Brussels sprouts</label>
<label><input type="checkbox"> Apples</label>
<label><input type="checkbox"> Oranges</label>
<label><input type="checkbox"> Berries (any variety)</label>
<h2>🥖 Bakery</h2>
<label><input type="checkbox"> Bread</label>
<h2>🥫 Canned, Dry & Packaged Goods</h2>
<label><input type="checkbox"> Diced tomatoes (2 × 28 oz cans)</label>
<label><input type="checkbox"> Black beans (1 can, ~19 oz)</label>
<label><input type="checkbox"> Kidney beans (1 can, ~19 oz)</label>
<label><input type="checkbox"> Vegetable broth (optional)</label>
<label><input type="checkbox"> Rice noodles (Pad Thai style)</label>
<label><input type="checkbox"> Brown rice</label>
<label><input type="checkbox"> Freeze-dried apple chips</label>
<label><input type="checkbox"> Baking powder</label>
<h2>🧃 Refrigerated / Vegan Meats & Tofu</h2>
<label><input type="checkbox"> Extra-firm tofu (1–2 blocks)</label>
<label><input type="checkbox"> Beyond Burgers</label>
<h2>❄️ Frozen</h2>
<label><input type="checkbox"> Frozen french fries</label>
<h2>🥒 Pickles & Jarred Items</h2>
<label><input type="checkbox"> Sandwich dill pickles</label>
<h2>🧰 Household / Other</h2>
<label><input type="checkbox"> Masking tape</label>
</body>
</html>