-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.61 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TECHMATE</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="images/logo.png" alt="Logo">
<h1>TECHMATE</h1>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="find.html">Find My Product</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1 class="fade-in">Find the Perfect Tech for You</h1>
<p class="fade-in delay">Use AI to get recommendations based on your needs</p>
<a href="find.html" class="btn scale-in">Find My Product</a>
</section>
<section class="categories">
<div class="category-container">
<div class="category-box">
<img src="images/phones.png" alt="Phones" class="product-image">
<p>Phones</p>
</div>
<div class="category-box">
<img src="images/laptops.png" alt="Laptops" class="product-image">
<p>Laptops</p>
</div>
<div class="category-box">
<img src="images/smartwatches.png" alt="Smartwatches" class="product-image">
<p>Smartwatches</p>
</div>
</div>
</section>
</body>
</html>