-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphones.html
117 lines (105 loc) · 3.16 KB
/
phones.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
<!DOCTYPE html>
<html lang="en" style="background-color:#161616;">
<head>
<meta charset="UTF-8">
<title>PBTech - Phones</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/iphone14.png" />
</div>
<div class="title">
<h1>Apple iPhone 14 Pro Max 128GB</h1>
<br />
<span><div>4.5 / 5</div><img class="stars" src="./images/stars.png"> </span>
</div>
<div class="desc">
<p>Designed to make a difference, using recycled materials, prioritising privacy, and including helpful accessability features</p>
<ul>
<li>Super retina XDR display</li>
<li>ProMotion Technology</li>
<li>Emergency SOS crash detection</li>
<li>Dual 48MP camera system</li>
<li>Superfast 5G</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>$1,885.22</td>
</tr>
<tr>
<td>GST</td>
<td>$282.78</td>
</tr>
<tr>
<td>Shipping</td>
<td class="bold">FREE</td>
</tr>
<tr>
<td class="bold">Total</td>
<td class="blue">$2,168.98</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>