forked from pablokbs/peladonerd-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (123 loc) · 5.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Information ––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8" />
<title>Matías Cabrera</title>
<meta name="description" content="" />
<meta name="author" content="" />
<!-- Google Search Console –––––––––––––––––––––––– -->
<meta name="google-site-verification" content="kF6vSR2ocxNDwmhg93iiRfFwgYEIxWXnBUBj939XTtQ" />
<!-- Mobile Specific Metas ––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- FONT ––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap"
rel="stylesheet"
/>
<!-- CSS ––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton-dark.css" />
<link rel="stylesheet" href="css/brands.css" />
<!-- Favicon ––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/avatar.png" />
</head>
<body>
<!-- Primary Page Layout ––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="column" style="margin-top: 10%">
<!-- Your Image Here -->
<style>
img.avatar {
border: 2px solid white;
border-radius: 50%;
}
a.small {
background: #1da1f2;
border-radius: 50px;
font-size: 18px;
text-align: center;
text-decoration: none;
height: 48px;
padding: 0 16px;
text-align: center;
vertical-align: middle;
font-size: 18px;
width: 300px;
font-weight: 600;
line-height: 48px;
letter-spacing: 0.5px;
background-color: transparent;
border-radius: 8px;
cursor: pointer;
box-sizing: border-box;
}
</style>
<img src="images/avatar.png" class="avatar" />
<!-- Your Name -->
<h1>Matías Cabrera</h1>
<!-- Replace # with your profile URL. Delete whatever you don't need & create your own brand styles in css/brands.css -->
<div>
<a
class="small button-linkedin"
href="https://www.linkedin.com/in/matiasrodrigocabrera/"
target="_blank"
><img class="icon" src="icons/linkedin.svg"
/></a>
<a
class="small button-facebook"
href="https://www.facebook.com/Maty11C"
target="_blank"
><img class="icon" src="icons/facebook.svg"
/></a>
<a
class="small button-instagram"
href="https://www.instagram.com/maty11c/"
target="_blank"
><img class="icon" src="icons/instagram.svg"
/></a>
<br />
</div>
<br />
<a
class="button button-mail"
href="mailto:[email protected]"
target="_blank"
><img class="icon" src="icons/mail.svg" />Mail</a
>
<a
class="button button-whatsapp"
href="https://api.whatsapp.com/send?phone=541137761333"
target="_blank"
><img class="icon" src="icons/whatsapp.svg" />WhatsApp</a
>
<br />
<br />
<footer>
<p>
Código para esta página
<a href="https://github.com/Maty11C/my-links" target="_blank"
>acá</a
>.
</p>
</footer>
</div>
</div>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-GR82G97BBQ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-GR82G97BBQ");
</script>
<!-- End Document ––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>