-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.html
92 lines (80 loc) · 2.21 KB
/
startup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Startup Company Name</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #333;
}
p {
font-size: 1.1rem;
line-height: 1.5;
margin-bottom: 2rem;
color: #333;
text-align: center;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 2rem;
}
.feature {
width: 300px;
margin: 1rem;
text-align: center;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
border-radius: 4px;
}
.feature h2 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: #333;
}
.feature p {
font-size: 1rem;
line-height: 1.5;
margin-bottom: 1rem;
color: #333;
}
</style>
</head>
<body>
<div class="container">
<h1>Startup Company Name</h1>
<p>We solve [problem] in a unique way by [solution].</p>
<div class="features">
<div class="feature">
<h2>Feature 1</h2>
<p>Description of feature 1.</p>
</div>
<div class="feature">
<h2>Feature 2</h2>
<p>Description of feature 2.</p>
</div>
<div class="feature">
<h2>Feature 3</h2>
<p>Description of feature 3.</p>
Scroll to bottom
Regenerate
Share