-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMango-Cheesecake.php
More file actions
45 lines (45 loc) · 1.85 KB
/
Mango-Cheesecake.php
File metadata and controls
45 lines (45 loc) · 1.85 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
<?php
include_once("header.php");
?>
<section>
<div class="container">
<div class="row ml">
<div class="col-xs-12 col-md-12 col-ds-6 col-lg-6 animate__animated animate__fadeInLeft animate__slow 2s">
<img src="./Images/MangoCheesecake.jpeg" alt="" height="600px" width="100%">
</div>
<div class="col-xs-12 col-md-12 col-ds-6 col-lg-6 animate__animated animate__fadeInRight animate__slow 2s">
<h2>MANGO CHEESECAKE</h2>
<p class="p">Rs. 1,350.00</p>
<p>A creamy rich baked cheesecake topped with fresh cream & slices of fresh mangoes.</p>
<div class="sq">
Quantity:
<select name="" id="">
<option value="1">Select</option>
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
</select>
</div>
<div class="ss">
Size:
<br>
<span><input type="checkbox"> 500gm</span>
<span><input type="checkbox"> 1 kg</span>
</div>
<div class="sr">
Options Available:
<br>
<span><input type="radio" name="radio" id="radio" value="Egg"> Egg</span>
<span><input type="radio" name="radio" id="radio" value="Eggless"> Eggless</span>
</div>
<div class="buy_now">
<a href="./Buy-Now.php"><input type="button" value="Buy Now"></a>
</div>
</div>
</div>
</div>
</section>
<?php
include_once("footer.php");
?>