-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
51 lines (36 loc) · 1.33 KB
/
new.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="new.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Newest Releases</title>
</head>
<body>
<nav>
<div id="nav-list">
<div id="top-menu">
<label id="brand">RIFF WIRED</label>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i id="hambrgr" class="fa fa-bars"></i>
</label>
</div>
<div id="bottom-menu">
<ul>
<li><a href="/">HOME</a></li>
<li><a href="/sale.html">SALE</a></li>
<li><a href="/reviews.html">REVIEWS</a></li>
<li><a href="/cart.html" id="cart-link"><img class="cart" src="/images/CART.png" alt="">
<span class="quantity">0</span>
</a></li>
</ul>
</div>
</div>
</nav>
<div id="gallery" class="newProducts">
</div>
<script src="script.js"></script>
</body>
</html>