-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 1.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/grocery-bag.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>Shopping List - Make Your Own List</title>
</head>
<body>
<main>
<!-- heading section -->
<div class="title">
<div class="heading">
Shopping List
</div>
<div class="sub-heading">
Create Shopping List at Your Fingertips
</div>
</div>
<!-- Add items section -->
<div class="add-items">
<div class="details">
<input type="text" class="text-box" id="itemName" placeholder="Enter an Item" list="grocerylist" autocomplete="off" />
<div class="micBtn-off" id="micBtn"></div>
<datalist id="grocerylist">
</datalist>
<input type="number" name="" id="quantity" min="1" class="quantity" placeholder="Quantity">
<select name="metrics" id="metrics" class="select-option">
<option value="" disabled selected>Select Weight</option>
<option value="MG">MG (MilliGrams)</option>
<option value="Grams">G (Grams)</option>
<option value="KG">KG (Kilogram)</option>
<option value="ML">ML (MilleLitre)</option>
<option value="Ltr">Ltr (Litre)</option>
<option value="Pieces">Pieces (Pcs)</option>
<option value="Pack(s)">Pack(s)</option>
</select>
</div>
<div class="buttons-section">
<button id="addItemBtn">Add</button>
<button id="deleteAllBtn">Delete All</button>
</div>
</div>
<!-- info section -->
<div id="info" class="info">
</div>
<!-- items section -->
<section class="items-section">
</section>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>