-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (38 loc) · 1.99 KB
/
index.html
File metadata and controls
52 lines (38 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--STYLES-->
<link rel="stylesheet" href="./css/styles.css">
<!--FAVICON-->
<link rel="icon" type="image/png" href="./images/jo_favicon.png">
<title>Hola! Esta es mi tarjeta de presentación</title>
</head>
<body>
<section class="main__container">
<figure class="profile-picture">
<img src="./images/profile.jpg" alt="foto de perfil">
</figure>
<article class="main__container-card">
<h1 class="main__container-card_title">
¡Hola! mi nombre es <span>Joel</span><br />
soy
<ul class="main__container-card_list">
<li class="main__container-card_skill"> Human. </li>
<li class="main__container-card_skill"> Frontend Dev. </li>
<li class="main__container-card_skill"> CSS lover. </li>
<li class="main__container-card_skill"> Productor musical.</li>
<li class="main__container-card_skill"> Autodidacta</li>
</ul>
</h1>
<div class="main__container-card_social-media">
<a class="icon-linkedin" href="" target="_blank"></a>
<a class="icon-github" href="https://github.com/pbyjo" target="_blank"></a>
<a class="icon-instagram" href="https://www.instagram.com/prodbyjo/" target="_blank"></a>
<a class="icon-twitter" href="https://twitter.com/byjo__" target="_blank"></a>
</div>
</article>
</section>
</body>
</html>