-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 2.53 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parlox - Jonathan Ricardo Proaño Alcívar</title>
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js" defer></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#inicio">Inicio</a></li>
<li><a href="#sobremi">Sobre Mí</a></li>
<li><a href="#iniciativas">Iniciativas</a></li>
<li><a href="#portafolio">Portafolio</a></li>
<li><a href="#contacto">Contacto</a></li>
</ul>
</nav>
</header>
<section id="inicio">
<h1>Te doy a bienvenida a mi espacio personal en la Parlox Network</h1>
<p>Este es un breve resumen de quien soy y lo que hago.</p>
</section>
<section id="sobremi">
<h2>Sobre Mí</h2>
<p>Me gustaría contarte un poco de mi experiencia.</p>
</section>
<section id="iniciativas">
<h2>Iniciativas</h2>
<p>Conoce las principales iniciativas en las que mantengo mi enfoque.</p>
</section>
<section id="portafolio">
<h2>Portafolio</h2>
<p>Algunos proyectos en los que he contribuido valor.</p>
</section>
<section id="contacto">
<h2>Contacto</h2>
<p>Cualquier cosa que necesites, no dudes en contactarme.</p>
</section>
<footer>
<p>© 2024 Parlox - Jonathan Ricardo Proaño Alcívar. | Hecho con 🧡 en 🇪🇨 | Código fuente de este sitio web disponible públicamente en GitHub.</p>
<p xmlns:cc="http://creativecommons.org/ns#" >Exceptuando el contenido de marcas registradas, clientes o externos referenciados; y a menos que se mencione lo contrario; el contenido de este sitio web está bajo licencia: <a href="https://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt=""></a></p>
</footer>
</body>
</html>