-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadphones.html
118 lines (106 loc) · 3.14 KB
/
headphones.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
<!DOCTYPE html>
<html lang="en" style="background-color:#161616;">
<head>
<meta charset="UTF-8">
<title>PBTech - Headphones & Audio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./styles/global.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="./styles/pages/product.css">
<link rel="icon" href="./images/favicon.svg">
<body>
<nav class="menu">
<a class="title" href="index.html">
<span>PB</span>Tech
</a>
<div class="links">
<a href="About.html">
<img src="images/ui/about.svg" alt="about">
</a>
<a href="Login.html">
<img src="images/ui/account.svg" alt="login">
</a>
<a href="index.html">
<img src="images/ui/home.svg" alt="home">
</a>
</div>
</nav>
<header>
<div class="head1">
<div class="dropdown">
<button class="dropbtn">DEPARTMENTS
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="Computers.html">COMPUTERS & TABLETS</a>
<a href="pc_parts.html">PC PARTS</a>
<a href="networking.html">NETWORKING</a>
<a href="Gaming.html">GAMING</a>
<a href="headphones.html">HEADPHONES & AUDIO</a>
<a href="phones.html">PHONES & ACCESORIES</a>
<a href="cameras.html">CAMERAS</a>
</div>
</div>
<div class="r">
<p class="deal">FLASH DEAL</p>
<p class="d-text">Get an NVIDIA RTX 40 Series, or AMD Radeon 7000 Series Graphics Card and get a free 32GB USB4
Type-A Flash
Drive</p>
</div>
</div>
</header>
<main class="product">
<div class="xm5">
<img src="./images/products/xm5s.png" />
</div>
<div class="title">
<h1>Sony WH-1000XM5</h1>
<br />
<span><div>4.5 / 5</div><img class="stars" src="./images/stars.png"> </span>
</div>
<div class="desc">
<p>The Sony WH-1000XM5's (More commonly reffered to as the XM5s) are industry-leading Over-Ear Noise
Cancelling Headphones.</p>
<ul>
<li>Over-Ear Form Factor</li>
<li>30 Hour Battery Life</li>
<li>Bluetooth & 3.5mm AUX</li>
<li>Microphone</li>
<li>Multipoint Connectivity</li>
</ul>
</div>
<div class="buy">
<div class="availability">
<span><em>Available</em> In Store</span>
<span><em>Available</em> Click & Collect</span>
<span><em>Available</em> Shipping</span>
</div>
<hr />
<table>
<tbody>
<tr>
<td>Product Price</td>
<td>$467.82</td>
</tr>
<tr>
<td>GST</td>
<td>$70.17</td>
</tr>
<tr>
<td>Shipping</td>
<td class="bold">FREE</td>
</tr>
<tr>
<td class="bold">Total</td>
<td class="blue">$537.99</td>
</tr>
</tbody>
</table>
<hr>
<div class="buttons">
<button class="cart">ADD TO CART</button>
<button class="now">BUY NOW</button>
</div>
</div>
</main>
</body>
</html>