-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (90 loc) · 2.86 KB
/
index.html
File metadata and controls
101 lines (90 loc) · 2.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="css/style.css">
<meta name="description" content="">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:image:alt" content="">
<title>Your Landing Page</title>
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="icon.png">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#fafafa">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<h1>Your Name/Brand</h1>
<p class="tagline">Your catchy tagline goes here</p>
</div>
</header>
<section class="hero">
<div class="container">
<h2>Welcome to My Site</h2>
<p>This is a simple, professional landing page template you can customize.</p>
<a href="#contact" class="btn">Get Started</a>
</div>
</section>
<section class="features">
<div class="container">
<h2>What I Offer</h2>
<div class="feature-grid">
<div class="feature">
<i class="fas fa-code"></i>
<h3>Feature One</h3>
<p>Description of your first feature or service.</p>
</div>
<div class="feature">
<i class="fas fa-palette"></i>
<h3>Feature Two</h3>
<p>Description of your second feature or service.</p>
</div>
<div class="feature">
<i class="fas fa-rocket"></i>
<h3>Feature Three</h3>
<p>Description of your third feature or service.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Get In Touch</h2>
<p>Interested in working together? Reach out below.</p>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Your Name/Brand. All rights reserved.</p>
<div class="social">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</footer>
</body>
</html>