-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
63 lines (54 loc) · 2.15 KB
/
about.html
File metadata and controls
63 lines (54 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About TechMate</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">TechMate</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="find.html">Find My Product</a></li>
<li><a href="about.html" class="active">About</a></li>
</ul>
</nav>
</header>
<main class="about-container">
<h1>About TechMate</h1>
<p>
Choosing the right tech product can be overwhelming. The best device isn’t the most expensive one or the most popular , it’s the one that fits you.
That’s where TechMate steps in.
</p>
<h2>Our Goal</h2>
<p>
TechMate is designed to simplify your buying process. We believe that:
</p>
<ul>
<li>Every user has different factors that influence their buying decisions.</li>
<li>No product is perfect for everyone, but there is one that fits you best.</li>
<li>Technology should fit your specific needs cause they are unique, just like you.</li>
</ul>
<h2>How It Works</h2>
<p>
Instead of spending hours comparing specifications, let TechMate guide you:
</p>
<ul>
<li> Answer a few quick questions about your needs.</li>
<li> Our AI-powered engine analyzes and recommends the best match.</li>
<li> Get a direct purchase link for your perfect product.</li>
</ul>
<h2>Why TechMate?</h2>
<p>
With countless choices available, finding the right tech shouldn’t be a struggle. TechMate does the research for you so that you can focus on what matters—getting the most out of your device.
</p>
<p>Let TechMate be your personal tech guide. Find your perfect match today!</p>
</main>
<footer>
<p>© 2025 TechMate. Yay hope you like it.</p>
</footer>
</body>
</html>