-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathveg.html
More file actions
83 lines (78 loc) · 2.02 KB
/
veg.html
File metadata and controls
83 lines (78 loc) · 2.02 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="veg.css">
</head>
<body>
<center>
<br><br>
<h1>What do you like to have?</h1>
</center>
<!-- box 1 -->
<div class="box1">
<div class="img1">
<img src="pics/paneer.png">
</div>
<div class="text1">
<h3>Paneer chilli</h3>
</div>
<div class="info1">
<p>Tasty and healthy</p>
</div>
<div class="price1">
<h1> ₹321</h1>
</div>
<div class="button1">
<a href="form.html">
<button><i class="fa-solid fa-plus "></i><p><b>Buy</b></p></button></a>
</div>
</div>
<!-- box 1 ends -->
<div class="box2">
<div class="img2">
<img src="pics/chole.png">
</div>
<div class="text2">
<h3>Chole bhature</h3>
</div>
<div class="info2">
<p>A classical dish</p>
</div>
<div class="price2">
<h1> ₹222</h1>
</div>
<div class="button2">
<a href="form.html">
<button><i class="fa-solid fa-plus "></i><p><b>Buy</b></p></button></a>
</div>
</div>
<!-- box 2 ends -->
<div class="box3">
<div class="img3">
<img src="pics/pav.png">
</div>
<div class="text3">
<h3>Pav bhaji</h3>
</div>
<div class="info3">
<p>A famous tasty meal</p>
</div>
<div class="price3">
<h1> ₹999</h1>
</div>
<div class="button3">
<a href="form.html">
<button><i class="fa-solid fa-plus "></i><p><b>Buy</b></p></button></a>
</div>
</div>
<div class="end">
<h1> Thanks for checkout</h1>
<br><br><br><p></p>
</div>
</body>
<script src="https://kit.fontawesome.com/2ceea449ac.js" crossorigin="anonymous"></script>
</html>