-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725834141.031371.html
90 lines (90 loc) · 2.69 KB
/
1725834141.031371.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Startups - Your Launchpad to Success</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header {
background-color: #4CAF50;
color: white;
padding: 20px 0;
text-align: center;
}
.container {
padding: 20px;
}
.features, .cta {
margin: 20px 0;
}
.feature-item {
background-color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.cta {
text-align: center;
}
.cta button {
background-color: #4CAF50;
color: white;
padding: 15px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.cta button:hover {
background-color: #45a049;
}
.footer {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
.footer a {
color: #4CAF50;
text-decoration: none;
}
</style>
</head>
<body>
<div class="header">
<h1>Welcome to Startups</h1>
<p>Your Launchpad to Success</p>
</div>
<div class="container">
<div class="features">
<div class="feature-item">
<h2>Innovative Solutions</h2>
<p>We provide cutting-edge technologies to help your startup grow and thrive in a competitive market.</p>
</div>
<div class="feature-item">
<h2>Expert Guidance</h2>
<p>Our team of experienced mentors offers personalized advice and support to help you achieve your business goals.</p>
</div>
<div class="feature-item">
<h2>Community Support</h2>
<p>Join a vibrant community of like-minded entrepreneurs and gain access to valuable networking opportunities.</p>
</div>
</div>
<div class="cta">
<h2>Ready to Launch?</h2>
<p>Sign up today and take the first step towards a successful startup journey!</p>
<button>Get Started</button>
</div>
</div>
<div class="footer">
<p>Made with <a href="https://landing-page-generator-tau.vercel.app">LPG</a></p>
</div>
</body>
</html>