-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts1.html
70 lines (68 loc) · 2.46 KB
/
products1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products - Computer Force</title>
<link rel="stylesheet" href="styles1.css">
</head>
<body>
<!-- Header -->
<header>
<div class="logo">COMPUTER <span>FORCE</span></div>
<nav>
<ul>
<li><a href="index1.html">Home</a></li>
<li><a href="products1.html" class="active">Products</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div class="search-bar">
<label for="Search">🔍</label>
<input type="text" id="Search">
</div>
</nav>
</header>
<!-- About Section -->
<section class="about">
<div class="about-content">
<h1>PRODUCTS</h1>
<h2>WE SELL</h2>
<p>Computer Force sells products in the following categories:</p>
</div>
<div class="purchase">
<h3>Purchase</h3>
<div class="item">
<span>Test Item 1</span> <span>$1000 AUD</span>
</div>
<div class="item">
<span>Test Item 2</span> <span>$500 AUD</span>
</div>
<div class="total">
<span>TOTAL</span> <span>$1500 AUD</span>
</div>
<button class="checkout">CHECKOUT</button>
</div>
</section>
<!-- Products Section -->
<section class="products-section">
<div class="product-carousel">
<img src="img/computer.png" alt="Computer">
<img src="img/laptops-1.png" alt="Audio">
<img src="img/graphics.png" alt="Graphic Cards">
<img src="img/laptop.png" alt="Laptops">
<img src="img/monitors.png" alt="Monitors">
<img src="img/print scan.png" alt="Printing and Scanning">
<img src="img/print scan-1.png" alt="Peripherals">
<img src="img/storage.png" alt="Storage">
<img src="img/print scan-2.png" alt="Keyboard and Mice">
<img src="img/software.png" alt="Software">
<img src="img/tablets.png" alt="Tablets">
</div>
</section>
<!-- Footer -->
<footer>
<p>Copyright © 2024 ComputerForce Pty Ltd — All Rights Reserved</p>
</footer>
</body>
</html>