-
Notifications
You must be signed in to change notification settings - Fork 2
/
products.html
75 lines (72 loc) · 3.09 KB
/
products.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ksp products</title>
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
</head>
<body>
<h1 class="mainheadline">KSP is not the best</h1>
<hr>
<div class="menu">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="about.html">About Us</a>
<a href="contactus.html"> Contact Us</a>
<hr>
<h1>Our Product's Price List</h1>
</div>
<table class="table">
<thead>
<tr>
<th scope="col">Product</th>
<th scope="col">Price</th>
<th scope="col">Quantity</th>
<th scope="col">Grade</th>
<th scope="col">Preview</th>
</tr>
</thead>
<tbody>
<tr>
<!-- this galaxy z fold6 is from the site: -->
<!-- https://www.samsung.com/uk/smartphones/?cid=il_paid_ppc_gork_galaxy-s23_on_ecom-awo-pmax-2023_dishop_open-audience-ecom-2023_bap_il_HE_na_cw_hqe_cdev_mx_ecom-awo-pmax-2023_smart_auc__conv&utm_campaign=ecom-awo-pmax-2023&utm_medium=paid_ppc&utm_source=gork&utm_content=il_galaxy-s23_on_ecom-awo-pmax-2023_static_open-audience-ecom-2023_bap_il_HE_na_cw_hqe_cdev_mx_ecom-awo-pmax-2023_smart_auc__conv&gad_source=1&gclid=Cj0KCQjw99e4BhDiARIsAISE7P_QtETDnPXruDvk3DnxJwXiKs1wD3oqbjTGEAIqQxhXqkewnuMEQ6YaAr9kEALw_wcB -->
<th scope="row">Galaxy Z Fold6 | Z Flip6</th>
<td>$ 1,800.00</td>
<td>6</td>
<td>4.6</td>
<td><img src="assets/images/zflip6.webp"></td>
</tr>
<tr>
<!-- this product is taken from: -->
<!-- https://www.samsung.com/uk/smartphones/galaxy-z-flip6/buy/ -->
<th scope="row">Galaxy Z Flip6</th>
<td>$ 1,499.00</td>
<td>13</td>
<td>4.0</td>
<td><img src="assets/images/flip6.jpg"></td>
</tr>
<tr>
<!-- this comes from this site: -->
<!-- https://www.samsung.com/uk/smartphones/galaxy-z-fold5/buy/ -->
<th scope="row">Galaxy Z Fold 5</th>
<td>$ 1,290.00</td>
<td>24</td>
<td>4.1</td>
<td><img src="assets/images/fold5.jpg"></td>
</tr>
<tr>
<!-- and this one is from here: -->
<!-- https://www.samsung.com/uk/smartphones/galaxy-s24-ultra/ -->
<th scope="row">Galaxy S24 Ultra</th>
<td>$ 1,200.00</td>
<td>14</td>
<td>4.2</td>
<td><img src="assets/images/ultra24.jpg"></td>
</tr>
</tbody>
</table>
</body>
</html>