-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproduct_detail.html
120 lines (115 loc) · 5.14 KB
/
product_detail.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Details</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles/product_detail.css">
<link rel="shortcut icon" href="./images/Geekbuying_title_logo.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
</head>
<body>
<div id="navbar">
</div>
<div id="content">
<img src="https://img.gkbcdn.com/s3/bn/2205/1500x125-628b774b2b40c9019c2ac472.jpg" alt="">
<p>Home / Consumer Electronics / Laser Engravers & Cutt / Accessories</p>
<div id="product">
<div id="image"></div>
<div id="data">
<h2 id="title"></h2>
<div id="small">
<span class="fa fa-star checked"></span>
<p id="rating">
</p>
<p>6 Reviews</p>
<p id="brand"></p>
<p>0 Answered Questions</p>
<p id="code"></p>
</div>
<h2 id="price"></h2>
<div id="off">
<p id="hov">2% OFF New User</p>
<p onclick="go_to_cop">Get Coupons</p>
</div>
<div id="show_offer">
<h2>New User Coupon</h2>
<div>
<div>
<p>2% OFF, max save $10</p>
<p>Valid only for 7 days after received</p>
</div>
<div>
<button>Get Now</button>
</div>
</div>
</div>
<div id="from">
<p>Ship From:</p>
<p id="from_country"></p>
</div>
<div id="qty">
<p>QTY:</p>
<div id="qty_button">
<p id="plus">+</p>
<p id="number"></p>
<p id="minus">-</p>
</div>
</div>
<div id="ship">
<p>Shipping:</p>
<p>Can ship to</p>
<select name="" id="select">
<option value="">India</option>
<option value="">China</option>
<option value="">USA</option>
</select>
</div>
<div id="buton">
<button id="btn1">Add to Cart</button>
<button id="btn2">Buy Now</button>
</div>
<div id="payment">
<p>Payment</p>
<img src="https://1000logos.net/wp-content/uploads/2021/04/Paypal-logo.png" alt="">
</div>
</div>
</div>
<div id="below">
<h2 id="descrip">Description</h2>
<h2 id="rev">Review</h2>
<h2 id="qa">Q&A</h2>
</div>
<div id="below_content">
<p>
<p class="des">Note</p>
You need to check the local voltage carefully, 200-240V is only suitable for the European version, and 110-120V is only suitable for the US version, the two versions cannot be used in common.
<br>
<p class="des">Highlights</p>
<p class="des">Great Air Pump</p>
SCULPFUN 30L/Min air pump is very suitable for air-assisted laser engraving machines, it can be perfectly suitable for SCULPFUN S10 or other similar air-assisted laser engraving machines.
<br>
<p class="des">High Durability</p>
This air pump has been produced and sold in the market for more than 10 years. After long-term testing and verification, it has extremely reliable function and stability.
<br>
<p class="des">Adjustable Speed</p>
The air pump has a speed control design, you can adjust the flow rate from 0-30L/Min by rotating the regulator, and adjusting the airflow speed according to the needs of the laser engraving machine.
<br>
<p class="des">Low Noise and Low Vibration</p>
Upgraded silent design, the internal structure of the machine and the external anti-vibration feet greatly reduce noise or vibration, providing a quiet working environment of less than 40dB.
<br>
<p class="des">Stable Air Pressure Output</p>
Featuring high stability design, it can maintain a stable air output even if it has been working for a long time.
</p>
</div>
</div>
<div id="footer_part1">
</div>
<div id="footer_part2">
</div>
</body>
</html>
<script type="module" src="scripts/product_detail.js"></script>