-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
59 lines (54 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer Services - Products</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Developer Services - Products</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="products-listing">
<div class="container">
<div class="filters">
<h2>Filter Services</h2>
<label for="category">Category:</label>
<select name="category" id="category">
<option value="all">All</option>
<option value="web">Web Development</option>
<option value="mobile">Mobile App Development</option>
<option value="software">Software Development</option>
<option value="design">UI/UX Design</option>
</select>
<label for="price-range">Price Range:</label>
<input type="range" id="price-range" min="0" max="100" value="0">
<span id="price-output">$0</span>
</div>
<div class="service-list">
<!-- Service cards dynamically generated -->
</div>
</div>
</main>
<footer class="site-footer">
<div class="container">
<p>© 2024 Developer Tools and Services. All rights reserved.</p>
</div>
</footer>
<div id="cart">
<!-- Cart popup content -->
</div>
<script src="products.js"></script>
</body>
</html>