-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
305 lines (266 loc) · 7.45 KB
/
index.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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bedrock Software</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
line-height: 1.6;
color: #333;
}
.container {
width: 85%;
max-width: 1200px;
margin: 0 auto;
}
header {
background-color: #1a2b3c;
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
}
.logo span {
color: #4caf50;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 2rem;
}
nav ul li a {
color: white;
text-decoration: none;
transition: color 0.3s;
}
nav ul li a:hover {
color: #4caf50;
}
.hero {
background: linear-gradient(rgba(26, 43, 60, 0.7), rgba(26, 43, 60, 0.7));
height: 100vh;
display: flex;
align-items: center;
text-align: center;
color: white;
}
.hero-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
}
.btn {
display: inline-block;
background: #1a2b3c;
color: white;
padding: 0.8rem 1.5rem;
border: none;
border-radius: 5px;
text-decoration: none;
font-size: 1rem;
transition: background-color 0.3s;
}
.btn:hover {
background: #2c3e50;
}
section {
padding: 5rem 0;
}
section h2 {
text-align: center;
margin-bottom: 3rem;
font-size: 2rem;
}
.about-content,
.contact-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.about-text,
.contact-form {
flex: 1;
min-width: 300px;
padding: 1rem;
}
.about-image,
.contact-info {
flex: 1;
min-width: 300px;
padding: 1rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: #f9f9f9;
border-radius: 5px;
padding: 2rem;
text-align: center;
transition: transform 0.3s;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-card:hover {
transform: translateY(-10px);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.team-member {
background: #f9f9f9;
border-radius: 5px;
padding: 2rem;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.team-member img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}
form {
display: grid;
gap: 1rem;
}
input,
textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 5px;
}
textarea {
resize: vertical;
min-height: 150px;
}
footer {
background-color: #1a2b3c;
color: white;
text-align: center;
padding: 2rem 0;
}
@media (max-width: 768px) {
.header-content {
flex-direction: column;
}
nav ul {
margin-top: 1rem;
}
nav ul li {
margin: 0 0.5rem;
}
.hero-content h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<div class="container header-content">
<div class="logo">Bedrock Software</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="container hero-content">
<h1>Building Tomorrow's Technology</h1>
<a href="#contact" class="btn">Get in Touch</a>
</div>
</section>
<section id="services" style="background-color: #f5f5f5;">
<div class="container">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-card">
<h3>Custom Software Development</h3>
<p>
Tailored software solutions designed to meet your specific needs.
</p>
</div>
<div class="service-card">
<h3>Web Application Development</h3>
<p>
Responsive, scalable web applications that provide seamless user
experiences across all devices.
</p>
</div>
<div class="service-card">
<h3>UI/UX Design</h3>
<p>
User-centered design that enhances user satisfaction and improves
product usability.
</p>
</div>
</div>
</div>
</section>
<section id="team">
<div class="container">
<h2>Our Team</h2>
<div class="team-grid">
<div class="team-member">
<h3>Armani Aguiar</h3>
<p>CEO & Founder</p>
</div>
</div>
</div>
</section>
<section id="contact" style="background-color: #f5f5f5;">
<div class="container">
<h2 style="text-align: center; margin-bottom: 2rem;">Contact Us</h2>
<div
class="contact-content"
style="display: flex; justify-content: center; align-items: center;"
>
<div class="contact-info" style="text-align: center;">
<p>[email protected]</p>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Bedrock Software</p>
<p>Providing innovative software since 2023</p>
</div>
</footer>
</body>
</html>