-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
46 lines (39 loc) · 1.65 KB
/
about.html
File metadata and controls
46 lines (39 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About — Dorm Room Essentials</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<h1>Dorm Room Essentials</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<h2>About Our Dorm Room Essentials</h2>
<p>Helping students make the most of their dorm rooms with smart, practical, and space-saving products.</p>
</section>
<main class="container">
<h2>Our Mission</h2>
<p>We know how important it is for students to create a comfortable and organized space. Our mission is to provide high-quality, carefully selected dorm room essentials that make daily life easier and more enjoyable. From smart desk lamps to space-saving organizers, every product is chosen to enhance your dorm experience.</p>
<h2>Why Trust Us?</h2>
<ul>
<li>We test and select products based on real student needs.</li>
<li>All recommendations are practical, affordable, and useful for small spaces.</li>
<li>We prioritize quality, durability, and ease of use.</li>
</ul>
<h2>Our Vision</h2>
<p>Our goal is to help students focus on what matters most: studying, relaxing, and enjoying campus life—without clutter or unnecessary hassle. By curating the best dorm essentials, we make it easy to create a productive and cozy environment in any room.</p>
<a href="index.html" class="btn back">← Back to Home</a>
</main>
</body>
</html>