-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
244 lines (217 loc) · 7.07 KB
/
Copy pathindex.html
File metadata and controls
244 lines (217 loc) · 7.07 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Veron - Build Without Code</title>
<style>
/* --- Core Setup --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fff;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
/* --- Hero / Header Area --- */
.hero-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
height: 400px; /* Adjust based on your needs */
width: 100%;
}
/* --- Powerful Features Section --- */
.features-section {
padding: 80px 0;
text-align: center;
background-color: #ffffff;
}
.section-title {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 60px;
color: #2d3436;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.feature-card {
background: #fff;
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease;
}
.feature-icon {
width: 50px;
height: 50px;
background: #5e72e4;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 1.2rem;
}
.feature-card h3 {
font-size: 1.1rem;
margin-bottom: 10px;
font-weight: 600;
}
.feature-card p {
font-size: 0.9rem;
color: #636e72;
line-height: 1.5;
}
/* --- Stats Section --- */
.stats-section {
background: linear-gradient(90deg, #667eea, #764ba2);
padding: 100px 0;
color: white;
text-align: center;
}
.stats-grid {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 40px;
}
.stat-item h2 {
font-size: 3rem;
margin-bottom: 5px;
font-weight: 700;
}
.stat-item p {
font-size: 1rem;
opacity: 0.9;
}
/* --- About Section --- */
.about-section {
padding: 100px 0;
text-align: center;
background-color: #fff;
}
.about-text {
max-width: 850px;
margin: 0 auto;
color: #636e72;
font-size: 0.95rem;
line-height: 1.8;
text-align: center;
}
/* --- Footer --- */
footer {
background-color: #2d3436;
color: #dfe6e9;
padding: 60px 0 20px;
}
.footer-grid {
display: flex;
justify-content: center;
gap: 200px;
margin-bottom: 40px;
text-align: left;
}
.footer-col h4 {
color: #fff;
margin-bottom: 20px;
font-size: 1rem;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 10px;
font-size: 0.85rem;
}
.footer-bottom {
border-top: 1px solid #444;
padding-top: 20px;
text-align: center;
font-size: 0.75rem;
color: #b2bec3;
}
</style>
</head>
<body>
<div class="hero-bg"></div>
<section class="features-section">
<div class="container">
<h2 class="section-title">Powerful Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🎨</div>
<h3>Drag & Drop</h3>
<p>Create beautiful layouts with our visual editor.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📱</div>
<h3>Mobile-First</h3>
<p>Automatically optimized for every device screen.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🛡️</div>
<h3>Secure</h3>
<p>Enterprise-grade security and SSL included.</p>
</div>
</div>
</div>
</section>
<section class="stats-section">
<div class="container">
<div class="stats-grid">
<div class="stat-item">
<h2>500+</h2>
<p>Websites Created</p>
</div>
<div class="stat-item">
<h2>99.9%</h2>
<p>Uptime</p>
</div>
<div class="stat-item">
<h2>24/7</h2>
<p>Support</p>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<h2 class="section-title">About Veron</h2>
<div class="about-text">
<p>Veron is a revolutionary no-code platform designed to empower creators, entrepreneurs, and small businesses to bring their digital ideas to life quickly and efficiently. With an intuitive drag-and-drop interface, users can build stunning websites and apps without writing a single line of code. Veron focuses on performance, security, and mobile responsiveness to ensure every project looks professional across all devices. We believe technology should be accessible to everyone, removing barriers to innovation and creativity. By combining powerful customization tools with enterprise-grade reliability, Veron bridges imagination and execution. Users gain complete control over their digital presence while saving time, cost, and development complexity.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-grid">
<div class="footer-col">
<h4>Product</h4>
<ul>
<li>Builder</li>
<li>Templates</li>
</ul>
</div>
<div class="footer-col">
<h4>Legal</h4>
<ul>
<li>Privacy</li>
<li>Terms</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Veron. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>