-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproduct.html
120 lines (118 loc) · 3.53 KB
/
product.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Bootstrap demo</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
</head>
<body>
<!-- Button trigger modal -->
<button
type="button"
class="btn btn-primary"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
>
Launch demo modal
</button>
<!-- Modal -->
<div
class="modal fade"
id="exampleModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content w-100">
<!-- <div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Modal title</h1>
</div> -->
<!-- <button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button> -->
<div class="modal-body">
<div class="container-fluid d-flex flex-sm-row justify-content-center">
<div class="body p-5 d-flex rounded">
<div class="img me-3">
<img
src="/public/images/chicken.jpg"
alt=""
srcset=""
class="rounded"
width="300px"
height="300px"
/>
</div>
<div class="details ms-3">
<div class="title">
<h3>Chicken</h3>
<p>Organic Chicken</p>
</div>
<div class="stars my-2">
<i class="bi bi-star-fill text-warning"></i>
<i class="bi bi-star-fill text-warning"></i>
<i class="bi bi-star-fill text-warning"></i>
<i class="bi bi-star-fill text-warning"></i>
<i class="bi bi-star-half text-warning"></i>
</div>
<div class="decription">
<h5>Lorem ipsum dolor sit amet.</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Blanditiis soluta odit totam nam maiores in vel,
doloribus nulla ab esse!
</p>
<p class="btn btn-outline-success btn-sm">Mobile Money</p>
<p class="btn btn-outline-success btn-sm">Home Delivery</p>
<p>Available</p>
</div>
<div class="input-group mb-3">
<span class="input-group-text" id="quantity">Units</span>
<input
type="number"
class="form-control"
value="1"
aria-label="quantity"
aria-describedby="quantity"
/>
</div>
<div class="price fw-bold">UGX 20,000/-</div>
<div class="my-2">
<button type="button" class="btn btn-success">
Add to Cart
</button>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
Close
</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div> -->
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"
></script>
</body>
</html>