-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.21 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.21 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>Landing Page</title>
<!-- Link to external CSS file -->
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Welcome to Your Product</h1>
</header>
<section class="hero">
<div>
<h1>Transform Your Digital Experience</h1>
<p>Join thousands of users who trust us with their digital journey.</p>
<button class="btn">Get Started</button>
</div>
</section>
<section class="features">
<div class="feature-card">
<h3>Feature One</h3>
<p>Get the best performance with our cutting-edge technology.</p>
</div>
<div class="feature-card">
<h3>Feature Two</h3>
<p>Security at its finest with seamless protection built-in.</p>
</div>
<div class="feature-card">
<h3>Feature Three</h3>
<p>Enjoy an intuitive and user-friendly interface.</p>
</div>
</section>
<footer>
<p>© 2024 Your Company. All Rights Reserved.</p>
</footer>
</body>
</html>