-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-card-design.php
66 lines (59 loc) · 1.92 KB
/
product-card-design.php
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
<?php
include 'includes/header.inc.php';
?>
<div class="bike-card">
<div class="top-stickers flex">
<span class="fuel-wrapper">
<i class='bx bxs-gas-pump'></i>
<span class="fuel-type">Petrol</span>
</span>
<span class="quantity_left">2 left</span>
</div>
<span class="model-name">Suzuki Access 125</span>
<div class="bike-img-wrapper flex">
<img src="images/bike-listings-imgs/Access-125.png" alt="Access 125" height="150" width="250">
</div>
<!-- <hr> -->
<div class="location-section">
<span class="available_at">Available at</span>
<span class="location-name">Umiya Circle</span>
</div>
<!-- <hr class="after-location-hr"> -->
<div class="time-section flex">
<div class="start-section flex">
<span class="start-time bold">8:30 am</span>
<span class="start-date">07 Sep 2024</span>
</div>
<div class="to-section">
<span class="to_text">to</span>
</div>
<div class="end-section flex">
<span class="end-time bold">10:30 am</span>
<span class="end-date">08 Sep 2024</span>
</div>
</div>
<div class="quantity-wrapper flex">
<button class="minus">-</button>
<input type="number" name="quantity" id="quantity" min="1" max="5" value="1">
<button class="plus">+</button>
</div>
<div class="bottom-section flex">
<div class="amount flex">
<p class="rupees">
<span>₹</span>
<span class="bold">599</span>
</p>
<p class="extra_charge">
(
<span>₹</span>
<span>200</span>
<span>/extra hr.</span>
)
</p>
</div>
<button class="book-btn">Book Now</button>
</div>
</div>
<?php
include 'includes/footer.inc.php';
?>