-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725831536.081929.html
81 lines (77 loc) · 1.95 KB
/
1725831536.081929.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Idea - Your Next Big Thing</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.header {
background-color: #0073e6;
color: white;
text-align: center;
padding: 50px 0;
}
.header h1 {
margin: 0;
font-size: 3em;
}
.header p {
font-size: 1.2em;
}
.content {
padding: 20px;
text-align: center;
}
.content h2 {
font-size: 2em;
margin-top: 0;
}
.content p {
font-size: 1.2em;
margin: 20px 0;
}
.cta-button {
background-color: #0073e6;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-size: 1.2em;
}
.footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
.footer a {
color: #0073e6;
text-decoration: none;
}
</style>
</head>
<body>
<div class="header">
<h1>Idea</h1>
<p>Your Next Big Thing</p>
</div>
<div class="content">
<h2>Welcome to Idea</h2>
<p>Discover the power of your imagination with Idea. The ultimate tool to bring your thoughts to life.</p>
<a href="#" class="cta-button">Get Started</a>
</div>
<div class="footer">
<p>Made with <a href="https://landing-page-generator-tau.vercel.app">LPG</a></p>
</div>
</body>
</html>