-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwobpbt.html
98 lines (98 loc) · 3.96 KB
/
wobpbt.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="productpage.css">
<link rel="icon" href="images/logo2.png">
<title>WOB PBT DOUBLESHOT</title>
<script type="text/javascript" src="javascript.js"></script>
</head>
<body onload="checkBadge()">
<header class="topnav">
<div class="logo">
<a href="homepage.html"><img src="images/logo.png" alt="logo"></a>
</div>
<nav>
<ul class="left">
<li><a href="keyboard.html">Keyboards</a></li>
<li><a href="switches.html">Switches</a></li>
<li><a href="keycaps.html">Keycaps</a></li>
</ul>
<ul class='right'>
<li><a href="cart.html" id="cart">Cart</a><span class='badge'></span> </li>
</ul>
</nav>
</header>
<div class="main">
<div class="productgallery">
<div class="bigProduct">
<img id='mainProduct' src="images/wobpbt.png" alt="wobpbt">
</div>
<ul class='multipleProducts'>
<li> <img src="images/wobpbt.png" alt="wobpbt" onclick="showProduct(this)"> </li>
<li><img src="images/wobpbt2.png" alt="wobpbt2" onclick="showProduct(this)"> </li>
<li> <img src="images/wobpbt3.png" alt="wobpbt3" onclick="showProduct(this)"> </li>
</ul>
</div>
<div class="description">
<h4>WOB PBT DOUBLESHOT KEYCAPS</h4>
<p id='price'>$40</p>
<p id='features'>Features</p>
<ul>
<li>PBT material</li>
<li>Cherry Profile</li>
<li>Doubleshot</li>
</ul>
<button id='button' type="button" name="button" onclick="addCart()">Add to cart</button>
</div>
</div>
<br>
<div class="description2">
<h3>About</h3>
<p>Our White-on-Black PBT keycap set is the colorway you know and love, now with legends inspired by the Japanese Katakana writing system. Simple, elegant, and built to last, the set encompasses one comprehensive kit to cover everything from compact builds to larger layouts with full numpads.</p>
</div>
<div class="considered">
<p>Others also considered</p>
<a href="keycaps.html">Browse all keycaps →</a>
<div class="consider">
<ul class='card'>
<ul>
<li><a href="domikeysa.html"><img src="images/domikeysa.png" alt="domikeysa"> </a> </li>
<li>DOMIKEY ABS DOUBLESHOT</li>
</ul>
<ul>
<li><a href="beigegrey.html"><img src="images/beigegreyxda.png" alt="beigegrey"> </a> </li>
<li>BEIGE GREY DYE SUB</li>
</ul>
<ul>
<li><a href="koreanroot.html"><img src="images/koreanroot.png" alt=""> </a> </li>
<li>KOREAN ROOT DYE SUB PBT</li>
</ul>
</ul>
</div>
</div>
<footer>
<div class="footer">
<div class="socials">
<ul>
<li><a href="https://www.facebook.com/" target="_blank"><img src="images/facebooklogo.png" alt="facebook"> </a> </li>
<li><a href="https://www.instagram.com/" target="_blank"><img src="images/instagramlogo.png" alt="instagram"> </a> </li>
<li><a href="https://www.twitter.com/" target="_blank"><img src="images/twitterlogo.png" alt="twitter"> </a> </li>
</ul>
</div>
<div class="summary">
<ul>
<li><a href="keyboard.html">Keyboards</a> </li>
<li><a href="switches.html">Switches</a> </li>
<li><a href="keycaps.html">Keycaps</a> </li>
</ul>
<ul>
<li><a href="https://www.termsfeed.com/live/59ad481b-1194-435b-a391-e6f91ed8f6ed" target="_blank">Terms of use</a></li>
<li><a href="https://www.freeprivacypolicy.com/live/8e5b8faf-cad3-462d-9b82-a0a66e7875df" target="_blank">Privary Policy</a> </li>
</ul>
</div>
<p>© 2022 KeyboardBar</p>
</div>
</footer>
</body>
</html>