-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1.html
64 lines (62 loc) · 2.17 KB
/
index1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - 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" class="active">Home</a></li>
<li><a href="products1.html">Products</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div class="search-bar">
<button>🔍</button>
<input type="text" placeholder="Search">
</div>
</nav>
</header>
<!-- About Section -->
<section class="welcome">
<div class="about-content">
<h1>WELCOME <span>COMPUTER FORCE</span></h1>
<p>Computer Force is your online expert in all things computing.</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>
<!-- Gallery Section -->
<section class="gallery-section">
<div class="gallery">
<img src="img/computer.png" alt="Product 1">
<img src="img/laptop.png" alt="Product 2">
<img src="img/monitors.png" alt="Product 3">
<img src="img/laptops-1.png" alt="Product 4">
<img src="img/graphics.png" alt="Product 5">
<img src="img/print scan.png" alt="Product 6">
</div>
</section>
<!-- Footer -->
<footer>
<p>Copyright © 2024 ComputerForce Pty Ltd — All Rights Reserved</p>
</footer>
</body>
</html>