-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeycaps.html
110 lines (110 loc) · 4.39 KB
/
keycaps.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="keyboard.css">
<link rel="icon" href="images/logo2.png">
<title>Keyboards</title>
<script type="text/javascript" src="javascript.js"></script>
</head>
<body onload="checkUrl(); checkBadge()">
<header class="topnav">
<div class="logo">
<a href="homepage.html"><img src="images/logo.png" alt="logo"></a>
</div>
<nav>
<ul class="left">
<div class="dropdown-keyboard">
<li class='primarynav'><a href="keyboard.html">Keyboards</a></li>
<ul class="dropdown-content">
<li><a href="keyboard.html?filter=barebones">Barebone Kits</a></li>
<li id='pre-build'><a href="keyboard.html?filter=prebuild">Pre-Builds</a></li>
</ul>
</div>
<div class="dropdown-keyboard">
<li class='primarynav'><a href="switches.html">Switches</a></li>
<ul class="dropdown-content">
<li><a href="switches.html?filter=linear">Linear</a></li>
<li><a href="switches.html?filter=tactile">Tactile</a></li>
<li><a href="switches.html?filter=clicky">Clicky</a></li>
</ul>
</div>
<div class="dropdown-keyboard">
<li class='primarynav'><a href="keycaps.html">Keycaps</a></li>
<ul class="dropdown-content">
<li><a href="keycaps.html?filter=cherry">Cherry Profile</a></li>
<li><a href="keycaps.html?filter=sa">SA Profile</a></li>
<li><a href="keycaps.html?filter=xda">XDA Profile</a></li>
</ul>
</div>
</ul>
<ul class='right'>
<li><a href="cart.html" id="cart">Cart</a><span class='badge'></span> </li>
</ul>
</nav>
</header>
<div class="keycapshero hero">
<h3 id='kc-hero-text'>KEYCAPS</h3>
</div>
<br>
<br>
<div class="filter">
<label for="filtered">Filter by: </label>
<select class="filtered" id="filtered" onchange="filter()">
<option value="featured">Featured</option>
<option value="cherry">Cherry Profile</option>
<option value="sa">SA Profile</option>
<option value="xda">XDA Profile</option>
</select>
</div>
<br>
<div class="gallery">
<ul class="cherry featured">
<li><a href="wobpbt.html"><img src="images/wobpbt.png" alt="wobpbt"> </a> </li>
<li>WOB PBT DOUBLESHOT</li>
<li>$40</li>
</ul>
<ul class="sa featured">
<li><a href="domikeysa.html"><img src="images/domikeysa.png" alt="domikeysa"> </a> </li>
<li>DOMIKEY ABS DOUBLESHOT</li>
<li>$89</li>
</ul>
<ul class="xda featured">
<li><a href="beigegrey.html"><img src="images/beigegreyxda.png" alt="beigegrey"> </a> </li>
<li>BEIGE GREY DYE SUB</li>
<li>$32</li>
</ul>
<ul class="cherry featured">
<li><a href="koreanroot.html"><img src="images/koreanroot.png" alt="kroot"> </a> </li>
<li>KOREAN ROOT DYE SUB PBT</li>
<li>$16</li>
</ul>
</div>
<div class="comingsoon">
<p>More Coming Soon</p>
</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>