-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeatures.html
More file actions
42 lines (39 loc) · 1.16 KB
/
features.html
File metadata and controls
42 lines (39 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 class='title'>Features</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="features.html">Features</a>
</nav>
<div class="container">
<h1>Features Page</h1>
<p>Discover what makes us unique. Here are the standout features of our platform:</p>
<section>
<h2>Feature 1: User-Friendly Design</h2>
<p>Our platform is designed with ease of use in mind, ensuring a seamless user experience.</p>
</section>
<section>
<h2>Feature 2: Advanced Technology</h2>
<p>We leverage the latest technology to deliver cutting-edge solutions to our users.</p>
</section>
<section>
<h2>Feature 3: Reliable Support</h2>
<p>Our support team is available 24/7 to assist you with any issues or questions.</p>
</section>
</div>
<footer>
<p>© 2024 Your Website</p>
</footer>
</body>
</html>