-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725822605.981709.html
156 lines (153 loc) · 4.18 KB
/
1725822605.981709.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header a, header h1 {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header nav {
float: right;
margin-top: 10px;
}
.showcase {
min-height: 400px;
background: url('ai-background.jpg') no-repeat 0 -400px;
text-align: center;
color: #fff;
}
.showcase h1 {
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}
.showcase p {
font-size: 20px;
}
.cta {
margin: 20px 0;
}
.cta a {
color: #fff;
background: #333;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
.cta a:hover {
background: #77aaff;
}
.features {
margin: 20px 0;
padding: 20px 0;
background: #fff;
text-align: center;
}
.features h2 {
margin-bottom: 20px;
}
.feature {
display: inline-block;
width: 30%;
margin: 1.5%;
vertical-align: top;
}
.feature img {
width: 80px;
}
.feature h3 {
margin: 10px 0;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Sundai</h1>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="showcase">
<div class="container">
<h1>Building & Launching AI Prototypes Every Sunday</h1>
<p>Join us on a journey to create innovative AI solutions every week.</p>
<div class="cta">
<a href="#">Get Started</a>
</div>
</div>
</section>
<section class="features">
<div class="container">
<h2>Why Choose Sundai?</h2>
<div class="feature">
<img src="fast-icon.png" alt="Fast">
<h3>Fast Prototyping</h3>
<p>Quickly build and test AI prototypes in a matter of hours.</p>
</div>
<div class="feature">
<img src="innovative-icon.png" alt="Innovative">
<h3>Innovative Solutions</h3>
<p>Stay ahead with cutting-edge AI technologies and ideas.</p>
</div>
<div class="feature">
<img src="community-icon.png" alt="Community">
<h3>Community Support</h3>
<p>Collaborate and learn from a vibrant community of AI enthusiasts.</p>
</div>
</div>
</section>
<footer>
<p>© 2023 Sundai. All Rights Reserved.</p>
</footer>
</body>
</html>