-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
76 lines (56 loc) · 1.99 KB
/
products.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
<!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="style.css">
<title>RNDTN Tactical</title>
</head>
<body>
<section class="showcase">
<header>
<h1 class="logo">RnDTN Tactical + Tier 1 Operators + Warfighting Equipment</h1><br><br>
<div class="toggle"></div>
</header>
<h2>Top Products</h2>
<div class="row">
<div class="column">
<img src="./img/taclight.jpg" alt="light" width="325" height="350">
<p>Tactical Light for everyday use - $90</p>
</div>
<div class="column">
<img src="./img/tacscope.jpg" alt="scope" width="325" height="350">
<p>Mountable scope for common rifles - $250</p>
</div>
<div class="column">
<img src="./img/tacmedkit.jpg" alt="medical" width="325" height="350">
<p>Lightweight Med Kit for everyday use - $120</p>
</div>
<div class="column">
<img src="./img/infaredtac.jpg" alt="laser" width="325" height="350">
<p>Durable and lightweight nightvision accessory - $350</p>
</div>
<ul class="social">
<li><a href="#"><img src="https://i.ibb.co/x7P24fL/facebook.png"></a></li>
<li><a href="#"><img src="https://i.ibb.co/Wnxq2Nq/twitter.png"></a></li>
<li><a href="#"><img src="https://i.ibb.co/ySwtH4B/instagram.png"></a></li>
</ul>
</section>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<script>
const menuToggle = document.querySelector('.toggle');
const showcase = document.querySelector('.showcase');
menuToggle.addEventListener('click', () => {
menuToggle.classList.toggle('active');
showcase.classList.toggle('active');
})</script>
</body>
</html>