-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 2.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<link rel="stylesheet" href="./styles.css">
<title>Computer Business</title>
</head>
<body>
<!-- Header Section -->
<header>
<div class="header-content">
<img class="business-logo" src="./assets/computer.png">
<div>
<h1 class="business-name">Computer Business</h1>
<p class="business-tagline">We sell Computers!</p>
</div>
</div>
<nav>
<ul>
<li><a class="nav-item" href="#">Home</a></li>
<li><a class="nav-item" href="#">About</a></li>
<li><a class="nav-item" href="#">Buy Now</a></li>
</ul>
</nav>
</header>
<!-- Main Section -->
<main>
<div class="hero-section">
<div class="hero-cta">
<h1 class="cta-title">Black Friday</h1>
<h2 class="cta-subtitle">Exclusive Deals</h2>
<h3 class="cta-tagline">Free Peripherals, High Discounts & More for a Limited Time Only!</h3>
<button class="cta-btn">Get Started</button>
</div>
</div>
<div class="featured-section">
<h1 class="featured-title">Featured Items</h1>
<div class="featured-item-cards">
<div class="featured-item">
<h1 class="item-title">Desktops</h1>
</div>
<div class="featured-item">
<h1 class="item-title">Laptops</h1>
</div>
<div class="featured-item">
<h1 class="item-title">Tablets</h1>
</div>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<span>Copyright © Computer Business 2012-2022</span>
</footer>
</body>
</html>