-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (86 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Groove Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img id="logo" src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/groove-logo%5B1%5D.png" alt="">
</header>
<div class="top container ">
<h1>Welcome to Groove!</h1><br>
<p>Select your favorite groceries, confirm your mobile number <br> and get them delivered in 30 mins - <b>
Straight from
the Farm</b></p>
<br>
<div class="button store"> <a href="#table"> <b>What's in store?</b> </a> </div>
</div>
<div class="table container">
<h2>Here's What Is In Store Today</h2>
<table id="table">
<tr>
<th>SELECT</th>
<th>ITEM</th>
<th>NAME</th>
<th>PRICE</th>
<th>CONTAINS</th>
<th>QUANTITY</th>
</tr>
<tr>
<td><input type="checkbox" name="" id="checkbox"></td>
<td><img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/apple%5B1%5D.png" alt=""></td>
<td>Green Apple</td>
<td>INR 22/- Per Kg</td>
<td>520 Calories, 3.0 g Protien,<br> 2.0 g Fat,
24 g Fiber.
</td>
<td><input id="quantity" type="number"></td>
</tr>
<tr>
<td><input type="checkbox" name="" id="checkbox"></td>
<td><img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/strawberry%5B1%5D.png" alt=""></td>
<td>Strawberries</td>
<td>INR 108/- Per Box</td>
<td>424 Calories, 8.88 g Protien, <br>
26.4 g Fiber.</td>
<td><input id="quantity" type="number"></td>
</tr>
<tr>
<td><input type="checkbox" name="" id="checkbox"></td>
<td><img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/carrot%5B1%5D.png" alt=""></td>
<td>Carrots</td>
<td>INR 26/- Per Kg</td>
<td>410 Calories,
9.0 g Protien, <br> 2.0 g Fat, 28.0 g Fiber.</td>
<td><input id="quantity" type="number"></td>
</tr>
<tr>
<td><input type="checkbox" name="" id="checkbox"></td>
<td><img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/spinach%5B1%5D.png" alt=""></td>
<td>Spinach</td>
<td>INR 10/- Per Piece</td>
<td>230 Calories,
29.0 g Protien, <br>
4.0 g Fat, 22.0 g Fiber.</td>
<td><input id="quantity" type="number"></td>
</tr>
</table>
<br><br>
<p>One last step to place your order. <br> Enter your mobile number and you are done!!!</p>
<br>
<input type="text" id="mobile"
placeholder="Enter your mobile number..">
<br><br>
<div class="button" onclick="buy" id="buy-now"> <b>Buy Now</b> </div>
<h3 id="thanks-text">Thank You For Shopping With Us.</h3>
<br><br>
<footer><p>
Made with 💕 with Kalvium
</p></footer>
</div>
</body>
<script src="app.js"></script>
</html>