-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
33 lines (33 loc) · 1.15 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Shreyas' Computers - About Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Welcome to Shreyas' Computers!</h1>
<nav>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section>
<h2>About Us</h2>
<img src="./about.png" width="225" height="*">
<p>Welcome to Shreyas' Computers, your one-stop shop for cutting-edge technology and hacking essentials. We're
dedicated to providing top-notch products tailored for tech enthusiasts and hackers alike.</p>
<p>Our mission is to equip you with the best tools and gear to fuel your passion for technology and help you
explore the digital world with confidence and creativity.</p>
<p>Join us on this exciting journey into the world of computers and hacking!</p>
</section>
<footer>
<p>© 2023 Shreyas' Computers</p>
</footer>
</div>
</body>
</html>