-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725822933.137228.html
102 lines (102 loc) · 2.92 KB
/
1725822933.137228.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
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sundai: Building & Launching AI Prototypes Every Sunday</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header {
background-color: #007BFF;
color: white;
padding: 20px 0;
text-align: center;
}
.container {
padding: 20px;
}
.hero {
text-align: center;
padding: 50px 0;
}
.hero h1 {
font-size: 3em;
margin: 0;
}
.hero p {
font-size: 1.2em;
color: #555;
}
.cta-button {
background-color: #28a745;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-size: 1.2em;
display: inline-block;
margin-top: 20px;
}
.features {
display: flex;
justify-content: space-around;
margin-top: 50px;
}
.feature {
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
width: 30%;
text-align: center;
}
.feature h3 {
color: #007BFF;
}
.footer {
background-color: #007BFF;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<div class="header">
<h1>Sundai</h1>
<p>Building & Launching AI Prototypes Every Sunday</p>
</div>
<div class="container">
<div class="hero">
<h1>Welcome to Sundai</h1>
<p>Join us every Sunday as we build and launch innovative AI prototypes. Get involved, learn, and create the future of AI with Sundai.</p>
<a href="#features" class="cta-button">Learn More</a>
</div>
<div class="features" id="features">
<div class="feature">
<h3>Innovative Prototypes</h3>
<p>Discover new and exciting AI prototypes built every week.</p>
</div>
<div class="feature">
<h3>Community Driven</h3>
<p>Collaborate with a community of AI enthusiasts and experts.</p>
</div>
<div class="feature">
<h3>Learning Opportunities</h3>
<p>Expand your knowledge with hands-on experience in AI development.</p>
</div>
</div>
</div>
<div class="footer">
<p>© 2023 Sundai. All rights reserved.</p>
</div>
</body>
</html>