-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (92 loc) · 2.74 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
<!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" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="icon" type="image/png" href="img/n-16.png" sizes="64x64" />
<title>Link Show</title>
<script type="module" crossorigin src="/javascript/index.js"></script>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body class="bg-gradient-to-t from-blue-200 via-blue-400 to-blue-600">
<div class="container__link">
<div class="card">
<div
class="flex flex-col items-center justify-center my-4 space-y-5 text-white"
>
<img class="w-24 h-24 rounded-full" src="/img/foto.jpg" alt="" />
<div>
<p class="text-xl">William Enríquez</p>
</div>
<div class="">
<a
type="submit"
href="mailto:[email protected]?subject=contacto&body=contacto"
class="button"
target="blank"
>
<i class="fas fa-envelope"></i>
Correo Electrónico
</a>
</div>
<div class="">
<a
type="submit"
href="https://www.facebook.com/ronald.reagan.982845"
class="button"
target="blank"
>
<i class="fab fa-facebook"></i>
Facebook
</a>
</div>
<div class="">
<a
type="submit"
href="https://www.linkedin.com/in/ronald-lopez-1a76aa207/"
class="button"
target="blank"
>
<i class="fab fa-linkedin"></i>
Linkedin
</a>
</div>
<div class="">
<a
type="submit"
href="https://github.com/willian593"
class="button"
target="blank"
>
<i class="fas fa-globe"></i>
Mi web
</a>
</div>
<div class="">
<a
type="submit"
href="https://github.com/willian593"
class="button"
target="blank"
>
<i class="fab fa-github"></i>
Github
</a>
</div>
</div>
</div>
</div>
<footer>
<div class="footer">
<p>© 2021 by William Enríquez</p>
</div>
</footer>
</body>
</html>