-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (122 loc) · 5.3 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
<!DOCTYPE html>
<html lang="es">
<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">
<link rel="stylesheet" href="main.css">
<!-- <link rel="preconnect"
href="https://fonts.googleapis.com">
<link rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin> -->
<!-- <link rel="icon" href="images/png/favicon.ico" type="image/x-icon"> -->
<link id="favicon">
<title id="title-page"></title>
</head>
<body>
<!-- <script type="module" src="main.js"></script> -->
<header>
<section class="menu">
<nav class="menu__nav">
<img id="menu-logo"
class="menu__logo">
<h1 id="menu-title"
class="menu_title"></h1>
</nav>
<nav>
<ul id="menu-list" class="menu__list">
</ul>
</nav>
</section>
</header>
<main>
<section id="profile-container" class="profile">
<div class="title__movable">
<img id="image-profile" class="image__profile">
<div class="title__container">
<h2 id="title-bio" class="title__bio type__writer"></h2>
<h3 id="title-subsection"
class="title__subsection"></h3>
<p id="title-subsection-content"
class="title__subsection"></p>
<ul id="title-network" class="title__network">
</ul>
</div>
</div>
</section>
<section class="about" id="sobre-mi">
<div id="about-container" class="about__container">
<h3 class="about__title">Sobre mi</h3>
</div>
</section>
<section id="skills" class="skills">
<h3 class="skills__title">Skills</h3>
<div id="skills-container" class="skills__container">
</div>
</section>
<section class="hobbies"
id="hobbies">
<h3 class="hobbies__title">Hobbies</h3>
<div id="hobbies-container" class="hobbies__container">
</div>
</section>
<section class="education"
id="formacion">
<h3 class="education__title">Formación académica</h3>
<div id="education-container" class="education__container">
</div>
</section>
<section id="experience" class="experience">
<h3 class="experience__title">Experiencia Profesional</h3>
<div id="experience-container" class="experience__container">
</div>
</section>
<section id="contact" class="contact">
<div class="form__contact__content">
<div class="form__contact__content__img">
<img id="form-contact-img" class="form__contact__img">
</div>
<div class="form__contact__text">
<h2 id="form-contact-title"
class="form__contact__title"></h2>
<h3 id="form-contact-subtext01"
class="form__contact__subtext"></h3>
<h3 id="form-contact-subtext02" class="form__contact__subtext"></h3>
<form id="form" class="form__contact__form"
name="form">
<input id="form-contact-name"
class="form__contact__input">
<input id="form-contact-email"
class="form__contact__input">
<input id="form-contact-asunto"
class="form__contact__input">
<textarea id="form-contact-mensaje"
class="form__contact__textarea"></textarea>
<button id="form-contact-boton-enviar"
class="form__contact__boton"></button>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__rodapie">
<div class="footer__icons">
<a href="https://github.com/jissbossh"
target="_blank"><i
class="fa-brands fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/jissbossh/"
target="_blank"><i
class="fa-brands fa-linkedin fa-2x"></i></a>
</div>
<p>© Desarrollado por JISSBOSS - 2024</p>
</div>
</footer>
<script src="https://kit.fontawesome.com/ef3eea8822.js"
crossorigin="anonymous"></script>
<script type="module" src="main.js"></script>
</body>
</html>