-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
97 lines (76 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products</title>
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<style>
.checked {
color: orange;
}
</style>
</head>
<body>
<div class="m-5">
<div class="row">
<div class="col-4">
<div class="row">
<div class="col border">
<img width="240" src="./img/gs600_psu_sideview_blue_2.png" alt="">
</div>
<div class="col">
<div style="width: 80%" class="row border">
<img width="80" src="./img/gs600_psu_sideview_blue_2.png" alt="">
</div>
<div style="width: 80%" class="row border">
<img width="80" src="./img/gs600_psu_sideview_blue_2.png" alt="">
</div>
<div style="width: 80%" class="row border">
<img width="80" src="./img/gs600_psu_sideview_blue_2.png" alt="">
</div>
</div>
</div>
</div>
<div class="col-8">
<div class="row">
<div class="col">
<div class="row">
<h5>Corsair GS600 600 Watt PSU</h5>
</div>
<div class="row">
<p>The Corsair Gaming Series GS600 is the ideal price/performance choice for mid-spec gaming PC</p>
</div>
<div class="row">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col">
<div class="row">
<h4>$1234.00</h4>
</div>
<div class="row">
<p style="color: lime">In Stock</p>
</div>
</div>
</div>
<hr>
<div class="row">
<button class="btn btn-success mr-2">Add To Cart</button>
<button class="btn btn-danger">Add To Wishlist</button>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./js/bootstrap.min.js"></script>