-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (85 loc) · 4.47 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Portafolio de Ayman Charoui, desarrollador web con experiencia en HTML, CSS, JavaScript y frameworks como Bootstrap.">
<meta name="author" content="Ayman Charoui Essamadi">
<title>Portafolio de Ayman Charoui</title>
<!-- Vinculación de Google Fonts para la tipografía Inter -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- CSS Personalizado -->
<link href="css/index.css" rel="stylesheet">
<!-- AOS Animations -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/aos.css">
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/aos.js" defer></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
AOS.init({
duration: 800,
easing: 'ease-in-out'
});
});
</script>
</head>
<body id="index">
<!-- Navbar cargada externamente -->
<header id="navbar-container"></header>
<script>
document.addEventListener("DOMContentLoaded", function () {
fetch("navbar.html")
.then(response => response.text())
.then(data => {
document.getElementById("navbar-container").innerHTML = data;
});
});
</script>
<!-- Sección de introducción -->
<section class="intro-section text-center py-5" aria-labelledby="intro-header">
<div class="container">
<div class="row align-items-center">
<!-- Columna para el contenido de texto a la izquierda -->
<div class="col-md-8 mb-4" data-aos="fade-left">
<header>
<h1 class="text-start d-flex align-items-center">
Hola, me llamo Ayman
<img src="Multimedia/images/manoemoji.png" alt="Emoji de saludo con la mano" class="emoji img-fluid ms-2" style="width: 90px;">
</h1>
</header>
<p class="text-start">Soy un desarrollador web en formación, enfocado en crear aplicaciones eficientes y bien diseñadas.</p>
<!-- Ubicación y estado -->
<div class="location-status mb-3 d-flex align-items-center">
<img src="Multimedia/images/gps.png" alt="Ubicación" class="img-fluid" style="width: 20px; height: 20px;">
<span class="ms-2">Tarragona, España</span>
</div>
<div class="status-indicator mb-3 d-flex align-items-center">
<span class="bg-success rounded-circle" style="width: 10px; height: 10px;"></span>
<span class="ms-2">En busca de trabajo</span>
</div>
<!-- Iconos sociales -->
<div class="social-icons d-flex mt-3">
<a href="https://github.com/AyChEs-0" target="_blank" class="me-3">
<img src="Multimedia/images/outline.png" alt="GitHub" class="social-icon">
</a>
<a href="https://www.linkedin.com/in/ayman-c-909846265?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app " target="_blank">
<img src="Multimedia/images/social.png" alt="LinkedIn" class="social-icon">
</a>
</div>
</div>
<!-- Columna para la imagen a la derecha -->
<div class="col-md-4 mb-4" data-aos="fade-right">
<img src="Multimedia/images/code.png" alt="Ayman Charoui" class="img-fluid rounded-circle" style="width: 150px; height: 150px;">
</div>
</div>
</div>
</section>
<!-- Footer fijo -->
<footer class="text-center text-white bg-dark py-3 fixed-bottom">
<p>© 2024 ACE. Todos los derechos reservados.</p>
</footer>
</body>
</html>