-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard.html
110 lines (110 loc) · 4.32 KB
/
keyboard.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">
<script type="text/javascript" src="javascript.js"></script>
<link rel="icon" href="images/logo2.png">
<title>Keyboards</title>
</head>
<body onload="checkBadge(); checkUrl()">
<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">Barebone Kits</a></li>
<li id='pre-build'><a href="keyboard.html">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">Linear</a></li>
<li><a href="switches.html">Tactile</a></li>
<li><a href="switches.html">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">Cherry Profile</a></li>
<li><a href="keycaps.html">SA Profile</a></li>
<li><a href="keycaps.html">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="keyboardhero hero">
<h3 id="kb-hero-text">KEYBOARDS</h3>
</div>
<br>
<br>
<div class="filter">
<label for="filtered">Filter by: </label>
<select class="filtered" id="filtered" onchange="filter(this.value)">
<option value="featured">Featured</option>
<option value="barebones">Barebones kits</option>
<option value="prebuild">Pre-Builds</option>
</select>
</div>
<br>
<div class="gallery">
<ul class="barebones featured">
<li><a href="nj80.html"><img src="images/nj80.png" alt="nj80"></a></li>
<li>NJ80 BAREBONES KIT</li>
<li>$100</li>
</ul>
<ul class="prebuild featured">
<li><a href="tofu60acrylic.html"><img src="images/tofu60acrylic.png" alt="tofu60acrylic"> </a> </li>
<li>TOFU60 ACRYLIC</li>
<li>$199</li>
</ul>
<ul class="prebuild featured">
<li><a href="womiertkl.html"><img src="images/womiertklacrylic.png" alt="womiertkl"> </a> </li>
<li>WOMIER TKL ACRYLIC</li>
<li>$80</li>
</ul>
<ul class="barebones featured">
<li><a href="tofu60diy.html"><img src="images/tofu60diykit.png" alt=""> </a> </li>
<li>TOFU60 DIY KIT</li>
<li>$159</li>
</ul>
</div>
<br>
<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>