-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpera.php
More file actions
57 lines (55 loc) · 2.71 KB
/
Opera.php
File metadata and controls
57 lines (55 loc) · 2.71 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
<?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/Opera.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>OPERA</h2>
<p class="p">Rs. 1,683.00 <strike>Rs. 1,870</strike></p>
<h4>( 10% Off ) <i class="fa fa-star" aria-hidden="true"></i><i class="fa fa-star" aria-hidden="true"></i><i class="fa fa-star" aria-hidden="true"></i><i class="fa fa-star" aria-hidden="true"></i><i class="fa fa-star" aria-hidden="true"></i></h4>
<p>Classic French pastry with almond sponge layered alternatively with coffee meringue buttercream and
Valrhona chocolate ganache.</p>
<!-- Form for validation -->
<form id="orderForm" method="POST" onsubmit="return validateForm()">
<div class="sq">
Quantity:
<select name="quantity" id="quantity">
<option value="">Select</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</div>
<div class="ss">
Size:
<br>
<span><input type="checkbox" name="size[]" value="500gm"> 500gm</span>
<span><input type="checkbox" name="size[]" value="1kg"> 1 kg</span>
</div>
<div class="sr">
Options Available:
<br>
<span><input type="radio" value="Egg" id="egg" name="option"> Egg</span>
<span><input type="radio" value="Eggless" id="eggless" name="option" disabled> Eggless</span>
</div>
<div class="buy_now">
<input type="submit" value="Buy Now">
</div>
</form>
<div class="atc">
<a href=""><input type="submit" value="Add To Cart"></a>
</div>
</div>
</div>
</div>
</section>
<?php
include_once("footer.php");
?>
<!-- Link to External JavaScript File -->
<script src="byvalid.js"></script>