-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
508 lines (453 loc) · 24.1 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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- BOOTSTRAP 5 -->
<link rel="stylesheet" href="css/bootstrap.css" />
<!-- BOOTSTRAP 5 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@sweetalert2/theme-dark@5/dark.css" />
<!-- LOCAL CSS STYLESHEET -->
<link rel="stylesheet" href="css/styles.css" />
<!-- LOCAL CSS STYLESHEET -->
<link rel="icon" href="images/logos/uxRamirezLogo.png" />
<title>UX Ramirez</title>
</head>
<body>
<!-- NAVIGATION -->
<!-- Navigation Start -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="images/logos/uxRamirezLogo.png" alt="" width="124" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#recent">Recent Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navigation End -->
<!-- HEADER -->
<!-- Header Start -->
<header id="home" class="header position-relative overflow-hidden">
<!-- Images -->
<img src="images/decorations/header-img.png" class="header-img position-absolute">
<!-- Images -->
<!-- Overlay para el gradiente -->
<div class="overlay"></div>
<!-- Contenido principal -->
<div class="container position-relative text-white">
<div class="row">
<div class="col-md-7 pt-5">
<h1 class="display-3 mt-5 fw-bold">Hi, my name is Abril Ramirez</h1>
<!-- Social media -->
<div class="pb-3">
<a href="https://facebook.com/uxramirez/"> <img src="images/icons/facebookIcon.png" alt="Facebook" class="socialIcon"></a>
<a href="https://instagram.com/ux_ramirez/"> <img src="images/icons/instagramIcon.png" alt="Instagram" class="socialIcon"></a>
<a href="https://www.behance.net/ux_ramirez"> <img src="images/icons/behanceIcon.png" alt="Behance" class="socialIcon"></a>
<a href="https://dribbble.com/ux_ramirez"> <img src="images/icons/dribbbleIcon.png" alt="Dribbble" class="socialIcon"></a>
<a href="https://github.com/UX-Ramirez"> <img src="images/icons/githubIcon.png" alt="Github" class="socialIcon"></a>
</div>
<!-- Social media -->
<p class="lead text-primary-50">And I’m a UI/UX Designer & Frontend Developer</p>
<p class="lead">Graduated in Computer Systems Engineer, I'm starting my journey on web design and UI/UX world. Actually, I’m focused on landing page and web design.</p>
<a href="#contact" class="btn btn-primary text-white me-3">Contact</a>
<a href="#services" class="btn btn-outline-light">Services</a>
</div>
</div>
<img src="images/profile-pic.png" class="profile-pic rounded-circle pt-3 d-none d-lg-block">
</div>
</header>
<!-- Header End -->
<!-- ABOUT-->
<!-- About Section Start -->
<section id="about" class="about position-relative pt-7">
<!-- Images -->
<img src="images/decorations/purpleGradient.png" class="purpleGradient position-absolute">
<img src="images/decorations/pinkGradient.png" class="pinkGradient position-absolute">
<!-- Images -->
<!-- Title -->
<div class="container">
<div class="row mb-4">
<div class="col-md-8 offset-md-2 d-flex flex-column align-items-center text-center">
<h4><span class="badge bg-secondary rounded-0 text-uppercase">About</span></h4>
<h2 class="fw-bold">UX Ramirez</h2>
<p>I'm beginning my journey as a freelance designer & web developer, passionate about creating solutions that make a difference.
I am dedicated to providing services with commitment and attention to detail, always ensuring results that exceed expectations.
Here are some areas where I stand out:
</p>
</div>
</div>
</div>
<!-- Title -->
<div class="container">
<div class="row">
<!-- Row 1 -->
<!-- Card 1 -->
<div class="col-lg-4">
<div class="card mb-4 rounded-0 border-0">
<div class="card-body text-center">
<img src="images/icons/responsiveIcon.png" alt="Responsive" class="servicesIcon pb-3">
<h4 class="card-title fw-bold">Fully Responsive Designs</h4>
<p class="card-text">
I ensure that websites adapt perfectly to any device, from mobile to large screens, so users have a smooth and attractive experience.
</p>
</div>
</div>
</div>
<!-- Card 1 -->
<!-- Card 2 -->
<div class="col-lg-4">
<div class="card mb-4 rounded-0 border-0 p-5">
<div class="card-body text-center">
<img src="images/icons/designIcon.png" alt="Design" class="servicesIcon pb-3">
<h4 class="card-title fw-bold">Focus on Design</h4>
<p class="card-text">
I create simple yet effective designs, prioritizing user experience and making sure every element of the website is clear and functional.
</p>
</div>
</div>
</div>
<!-- Card 2 -->
<!-- Card 3 -->
<div class="col-lg-4">
<div class="card mb-4 rounded-0 border-0">
<div class="card-body text-center">
<img src="images/icons/easyIcon.png" alt="Easy" class="servicesIcon pb-3">
<h4 class="card-title fw-bold">Easy To Use</h4>
<p class="card-text">
I develop intuitive interfaces that make navigation easy, helping users quickly find what they need without any hassle.
</p>
</div>
</div>
</div>
<!-- Card 3 -->
<!-- Row 1 -->
</div>
</div>
</section>
<!-- About Section End -->
<!-- SERVICES -->
<!-- Services Start -->
<section id="services" class="services position-relative overflow-hidden pt-7">
<!-- Images -->
<svg width="1915" height="96" viewBox="0 0 1915 96" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1915 0H0L973.5 95.5L1915 0Z" fill="#202020"/>
</svg>
<img src="images/icons/cssIcon.png" class="css-icon position-absolute d-none d-xxl-block">
<img src="images/icons/htmlIcon.png" class="html-icon position-absolute d-none d-xxl-block">
<img src="images/icons/jsIcon.png" class="js-icon position-absolute d-none d-xxl-block">
<img src="images/icons/bootstrapIcon.png" class="bootstrap-icon position-absolute d-none d-xxl-block">
<img src="images/icons/figmaIcon.png" class="figma-icon position-absolute d-none d-xxl-block">
<img src="images/icons/nodeIcon.png" class="node-icon position-absolute d-none d-xxl-block">
<!-- Images -->
<!-- Title -->
<div class="container">
<div class="row mb-4">
<div class="col-md-8 offset-md-2 d-flex flex-column align-items-center text-center">
<h4><span class="badge bg-secondary rounded-0 text-uppercase">Services</span></h4>
<h2 class="fw-bold">What I'm Offering?</h2>
</div>
</div>
</div>
<!-- Title -->
<div class="container">
<div class="row mt-5">
<div class="col-md-6">
<!-- Card 1 -->
<div class="card rounded-4 border-0 mb-5 p-4">
<div class="card-body">
<h3 class="fw-bold">Landing Page UI/UX Design</h3>
<ul class="list-group list-group-flush fs-5 mb-5 vstack">
<li class="list-group-item border-0">Figma design of one-page website</li>
<li class="list-group-item border-0">Desktop, tablet & mobile layouts</li>
<li class="list-group-item border-0">Full ownership of the website design and content</li>
<li class="list-group-item border-0">Depend of the number of sections you need, is the price I'll give you</li>
</ul>
<p class="col-lg-7"><img class="listIcon me-2" src="images/icons/clockIcon.png"><strong>Delivery time:</strong> Within 1-2 weeks</p>
<p class="col-lg-5"><img class="listIcon me-2" src="images/icons/revisionIcon.png"><strong>Revision:</strong> 1 revision</p>
<h4 class="fw-bold mt-4">From $50 USD</h4>
<a href="#contact" class="btn btn-primary text-white m-2">Contact</a>
<a href="https://www.behance.net/ux_ramirez/services/446581/Landing-Page-UI-UX-Design" class="btn btn-outline-light btnBehance m-2"><img class="btnIcon me-2" src="images/icons/behanceOriginalIcon.png">Behance Message</a>
</div>
</div>
<!-- Card 1 -->
</div>
<div class="col-md-6">
<!-- Card 2 -->
<div class="card rounded-4 border-white mb-5 p-4 shadow-lg">
<div class="card-body">
<h3 class="fw-bold">Landing Page Bundle: Design + Development</h3>
<ul class="list-group list-group-flush fs-5 mb-5 vstack">
<li class="list-group-item border-0">Figma design of one-page website</li>
<li class="list-group-item border-0">Includes Frontend Development with Bootstrap</li>
<li class="list-group-item border-0">Full ownership of the website design and code</li>
<li class="list-group-item border-0">Depend of the number of sections you need, is the price I'll give you</li>
<li class="list-group-item border-0">For <strong>5 USD more</strong>, I'll give you a seat to host your page</li>
</ul>
<p class="col-lg-7"><img class="icon me-2" src="images/icons/clockIcon.png"><strong>Delivery time:</strong> Within 1-2 weeks</p>
<p class="col-lg-5"><img class="icon me-2" src="images/icons/revisionIcon.png"><strong>Revision:</strong> 1 revision</p>
<h4 class="fw-bold mt-4">From $70 USD + Domain (optional)</h4>
<a href="#contact" class="btn btn-primary text-white m-2">Contact</a>
<a href="https://www.behance.net/ux_ramirez/services/446585/Landing-Page-Bundle-Design-Development" class="btn btn-outline-light btnBehance m-2"><img class="btnIcon me-2" src="images/icons/behanceOriginalIcon.png">Behance Message</a>
</div>
</div>
<!-- Card 2 -->
</div>
<div class="col-md-6">
<!-- Card 3 -->
<div class="card rounded-4 border-0 mb-5 p-4">
<div class="card-body">
<h3 class="fw-bold">Larger Website UI/UX Design</h3>
<ul class="list-group list-group-flush fs-5 mb-5 vstack">
<li class="list-group-item border-0">Figma Design of up to 1 page</li>
<li class="list-group-item border-0">Desktop, tablet & mobile layouts</li>
<li class="list-group-item border-0">Full ownership of the website design and content</li>
<li class="list-group-item border-0">Depend of the number of pages you need, is the price I'll give you</li>
</ul>
<p class="col-lg-7"><img class="icon me-2" src="images/icons/clockIcon.png"><strong>Delivery time:</strong> Within 1 month</p>
<p class="col-lg-5"><img class="icon me-2" src="images/icons/revisionIcon.png"><strong>Revision:</strong> 1 revision</p>
<h4 class="fw-bold mt-4">From $70 USD</h4>
<a href="#contact" class="btn btn-primary text-white m-2">Contact</a>
<a href="https://www.behance.net/ux_ramirez/services/446583/Larger-Website-UI-UX-Design" class="btn btn-outline-light btnBehance m-2"><img class="btnIcon me-2" src="images/icons/behanceOriginalIcon.png">Behance Message</a>
</div>
</div>
<!-- Card 3 -->
</div>
<div class="col-md-6">
<!-- Card 4 -->
<div class="card rounded-4 border-white mb-5 p-4 shadow-lg">
<div class="card-body">
<h3 class="fw-bold">Larger Website Bundle: Design + Development</h3>
<ul class="list-group list-group-flush fs-5 mb-5 vstack">
<li class="list-group-item border-0">Figma Design of up to 1 pages</li>
<li class="list-group-item border-0">Includes Frontend Development with Bootstrap</li>
<li class="list-group-item border-0">Full ownership of the website design and code</li>
<li class="list-group-item border-0">Depend of the number of pages you need, is the price I'll give you</li>
<li class="list-group-item border-0">For <strong>5 USD more</strong>, I'll give you a seat to host your page</li>
</ul>
<p class="col-lg-7"><img class="icon me-2" src="images/icons/clockIcon.png"><strong>Delivery time:</strong> Within 1 month</p>
<p class="col-lg-5"><img class="icon me-2" src="images/icons/revisionIcon.png"><strong>Revision:</strong> 1 revision</p>
<h4 class="fw-bold mt-4">From $115 USD + Domain (optional)</h4>
<a href="#contact" class="btn btn-primary text-white m-2">Contact</a>
<a href="https://www.behance.net/ux_ramirez/services/446587/Larger-Website-Bundle-Design-Development" class="btn btn-outline-light btnBehance m-2"><img class="btnIcon me-2" src="images/icons/behanceOriginalIcon.png">Behance Message</a>
</div>
</div>
<!-- Card 4 -->
</div>
</div>
</div>
</section>
<!-- Servicess End -->
<!-- RECENT WORK -->
<!-- Recent Work Section Start -->
<section id="recent" class="recent position-relative overflow-hidden pt-7 pb-5">
<!-- Images -->
<svg width="1915" height="96" viewBox="0 0 1915 96" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1915 0H0L973.5 95.5L1915 0Z" fill="#290E41"/>
</svg>
<img src="images/decorations/purpleGradient.png" class="purpleGradient position-absolute">
<img src="images/decorations/pinkGradient.png" class="pinkGradient position-absolute">
<!-- Images -->
<!-- Title -->
<div class="container">
<div class="row mb-4">
<div class="col-md-6 offset-md-3 d-flex flex-column align-items-center text-center">
<h4><span class="badge bg-secondary rounded-0 text-uppercase">Recent Work</span></h4>
<h2 class="fw-bold">View My Latest Projects</h2>
</div>
</div>
</div>
<!-- Title -->
<div class="container">
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card h-100">
<img src="images/covers/project01.png" class="card-img-top" alt="Project 01">
<div class="card-body">
<h5 class="card-title fw-bold">UX Ramirez Website</h5>
<p class="card-text">Landing Page where you'll fin information about my Freelance Services and contact info.</p>
<div>
<button href="" class="btn btn-primary btn-md text-white" disabled>Actual Page</button>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="images/covers/project02.png" class="card-img-top" alt="Project 02">
<div class="card-body">
<h5 class="card-title fw-bold">Casa María Silvia</h5>
<p class="card-text">Landing Page for a vacation house rental, where you will find details about the house and reservations info.</p>
<div>
<a href="https://casamariasilvia.vercel.app/" class="btn btn-outline-primary btn-md text-white">Visit Website</a>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="images/covers/project03.png" class="card-img-top" alt="Project 03">
<div class="card-body">
<h5 class="card-title fw-bold">BeeCare [Redesign]</h5>
<p class="card-text">This Website aims to encourage the community about the importance of bees and why we should take care of them.</p>
<div>
<a href="https://glassesfriends.github.io/BeeCare_website_redesign/index.html" class="btn btn-outline-primary btn-md text-white">Visit Website</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Recent Work Section End -->
<!-- CONTACT -->
<!-- Contact Start -->
<section id="contact" class="contact position-relative overflow-hidden py-7">
<!-- Images -->
<img src="images/decorations/purpleGradient.png" class="purpleGradient position-absolute">
<img src="images/decorations/pinkGradient.png" class="pinkGradient position-absolute">
<img src="images/decorations/cyanGradient.png" class="cyanGradient position-absolute">
<!-- Images -->
<!-- Title -->
<div class="container">
<div class="row mb-4">
<div class="col-md-8 offset-md-2 d-flex flex-column align-items-center text-center">
<h4><span class="badge bg-secondary rounded-0 text-uppercase">Contact</span></h4>
<h2 class="fw-bold">To Discuss Your Requeriments</h2>
</div>
</div>
</div>
<!-- Title -->
<div class="container">
<div class="row">
<!-- Column 1 -->
<div class="col-lg-5">
<div>
<p class="fw-light">If you want a unique and personalized project, send me a message, or contact me at:</p>
<div class="row">
<ul class="list-unstyled lh-lg">
<!-- List Item 1 -->
<li class="d-flex align-items-center pb-3">
<a href="mailto:ux.ramirez01@gmail.com"> <img src="images/icons/mailIcon.png" alt="Mail" class="socialIcon me-4"></a>
<div>
<strong>Email</strong> <br>ux.ramirez01@gmail.com
</div>
</li>
<!-- List Item 1 -->
<!-- List Item 2 -->
<li class="d-flex align-items-center pb-3">
<a href="https://facebook.com/uxramirez/"> <img src="images/icons/facebookIcon.png" alt="Facebook" class="socialIcon me-4"></a>
<div>
<strong>Facebook Message</strong> <br>UX Ramirez
</div>
</li>
<!-- List Item 2 -->
<!-- List Item 3 -->
<li class="d-flex align-items-center pb-3">
<a href="https://instagram.com/ux_ramirez/"> <img src="images/icons/instagramIcon.png" alt="Instagram" class="socialIcon me-4"></a>
<div>
<strong>Instagram DM</strong> <br>UX Ramirez
</div>
</li>
<!-- List Item 3 -->
<!-- List Item 4 -->
<li class="d-flex align-items-center">
<a href="https://wa.me/526643352557"> <img src="images/icons/whatsappIcon.png" alt="Instagram" class="socialIcon me-4"></a>
<div>
<strong>WhatsApp Message</strong> <br>(+52) 664 3352557
</div>
</li>
<!-- List Item 4 -->
</ul>
</div>
</div>
</div>
<!-- Column 1 -->
<!-- Column 2 -->
<div class="col-lg-7">
<div>
<form action="https://api.web3forms.com/submit" method="POST" class="row g-3" id="contactForm">
<input type="hidden" name="access_key" value="d3b01a7c-5288-4217-8e54-94df4fa70043">
<div class="col-md-6">
<label for="inputName" class="form-label required-input">Name</label>
<input type="text" class="form-control" id="inputName" placeholder="Name" name="Name" required>
</div>
<div class="col-md-6">
<label for="inputLastName" class="form-label required-input">Last Name</label>
<input type="text" class="form-control" id="inputLastName" placeholder="Last Name" name="Last Name" required>
</div>
<div class="col-12">
<label for="inputEmail" class="form-label required-input">Email</label>
<input type="email" class="form-control" id="inputEmail" placeholder="example@email.com" name="Email Address" required>
</div>
<div class="col-12">
<label for="inputMessage" class="form-label required-input">Message</label>
<textarea class="form-control" id="inputMessage" rows="3" placeholder="Write your message here..." name="Message" required></textarea>
</div>
<div class="col-12">
<button class="btn btn-primary text-white" type="submit">Send</button>
</div>
</form>
</div>
</div>
<!-- Column 2 -->
</div>
</div>
</section>
<!-- Contact End -->
<!-- FOOTER -->
<!-- Footer Start -->
<footer id="footer" class="footer position-relative overflow-hidden text-white py-4">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center">
<img src="images/logos/uxRamirezLogo.png" alt="UX Ramirez Logo" class="logo pt-5">
<p class="lead fw-light">Your journey to better design starts now...</p>
<!-- Social media -->
<div class="pb-3">
<a href="https://facebook.com/uxramirez/"> <img src="images/icons/facebookIcon.png" alt="Facebook" class="socialIcon"></a>
<a href="https://instagram.com/ux_ramirez/"> <img src="images/icons/instagramIcon.png" alt="Instagram" class="socialIcon"></a>
<a href="https://www.behance.net/ux_ramirez"> <img src="images/icons/behanceIcon.png" alt="Behance" class="socialIcon"></a>
<a href="https://dribbble.com/ux_ramirez"> <img src="images/icons/dribbbleIcon.png" alt="Dribbble" class="socialIcon"></a>
<a href="https://github.com/UX-Ramirez"> <img src="images/icons/githubIcon.png" alt="Github" class="socialIcon"></a>
</div>
<!-- Social media -->
</div>
</div>
<div class="row pt-5">
<p class="text-center"> © Copyright 2024 Abril Ramirez</p>
</div>
</div>
</div>
</footer>
<!-- Footer End -->
<!-- SCRIPTS -->
<script src="sweetalert2.all.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
<!-- SCRIPTS -->
</body>
</html>