-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (72 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/favicon.png" sizes="32x32">
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- SEO -->
<title>Juan Vázquez Murga - Software Developer and more...</title>
<meta name="description" content="I invented Lorem Ipsum coming back to home a Saturday night. I usually write on Medium and sometimes in Twitter." />
<meta name="robots" content="index, follow" />
<meta name="referrer" content="always" />
<!-- Social & Open Graph -->
<meta property="og:title" content="Juan Vázquez Murga - Software Developer and more...o" />
<meta property="og:description" content="I invented Lorem Ipsum coming back to home a Saturday night. I usually write on Medium and sometimes in Twitter." />
<meta property="og:image" content="https://demo.onepagelove.com/fullsingle-html/me/images/social.jpg"> <!-- include your hosted image full URL -->
<meta property="og:url" content="https://demo.onepagelove.com/fullsingle-html/me/" />
<meta name="twitter:title" content="Juan Vázquez Murga - Software Developer and more..." >
<meta name="twitter:description" content="I invented Lorem Ipsum coming back to home a Saturday night. I usually write on Medium and sometimes in Twitter." />
<meta name="twitter:image" content="https://demo.onepagelove.com/fullsingle-html/me/images/social.jpg" /> <!-- include your hosted image full URL -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@onepagelove" />
<meta name="twitter:creator" content="@robhope" />
<!-- Styles -->
<link rel="stylesheet" href="css/bootstrap4.min.css">
<link rel="stylesheet" href="css/wireframe-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
</head>
<body class="main-grid">
<div class="header container-grid">
<span class="text-element text-3">Juan Vázquez Murga - Software Developer</span>
<div class="container-grid container-1">
<p class="paragraph">Currently working with <span id="currently" class="highlight"></span></p>
</div>
</div>
<div class="container-grid footer">
<div class="container-grid container-2">
<p class="paragraph paragraph-1"><span class="paragraph-text-1">Contact</span>
</p>
<p class="paragraph paragraph-2">
<a href="mailto:[email protected]" target="_blank">
<span class="paragraph-text-3">[email protected]</span>
</a>
</p>
<p class="paragraph paragraph-3">
<a href="https://twitter.com/jnillo9" target="_blank" class="social-image social-icon-1">
<img class="generic-icon" src="./img/twitter.png" alt="Twitter">
</a>
<a href="https://www.linkedin.com/in/juanvazquezmurga/" target="_blank" class="social-image social-icon-1">
<img class="generic-icon" src="./img/linkedin.png" alt="Linkedin">
</a>
</p>
</div>
</div>
<script src="js/typed.min.js"></script>
<script>
var typed = new Typed('#currently', {
strings: ["Ruby on Rails.", "Elixir.", "Phoenix."],
loop: true,
typeSpeed: 60,
backDelay: 1000
});
</script>
</body>
</html>