-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (51 loc) · 3.12 KB
/
index.html
File metadata and controls
54 lines (51 loc) · 3.12 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
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>V2RM | Vinicius Marques</title>
<meta name="description" content="Personal portifolio."/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
<meta name="theme-color" content="#db5945">
<!-- <link rel="icon" sizes="192x192" href="icon.png"> -->
<!-- <link rel="manifest" href="manifest.json"> -->
<link href="./styles.css" rel="stylesheet"></head>
<body>
<div id="app">
<header>
<picture>
<source media="(max-width: 650px)" srcset="https://graph.facebook.com/768113702/picture?width=240" alt="Vinicius Marques">
<source media="(max-width: 465px)" srcset="https://graph.facebook.com/768113702/picture?width=140" alt="Vinicius Marques">
<img src="https://graph.facebook.com/768113702/picture?width=640" alt="Vinicius Marques">
</picture>
</header>
<section id="about">
<h1>Hi, my name is <strong>Vinicius Marques</strong> and I am <script>function getAge(e){var t=new Date,g=new Date(e),a=t.getFullYear()-g.getFullYear(),n=t.getMonth()-g.getMonth();return(n<0||0===n&&t.getDate()<g.getDate())&&a--,a}; document.write(getAge('1985-05-17'));</script> years-old and I live in Pelotas - RS - Brazil.</h1>
<p>I hold a Bachelor of Computer Science granted by the Catholic University Pelotas (UCPel-2011) and a Postgraduate in Project Management by the Senac Technology Faculy, in Pelotas.</p>
<p>I have been working as a Front End Developer since 2004, when I started working at the AG2 agency, where I worked up to March of 2013. In April of 2013, I was invited to work at Nodo, where I have currently been working as Head of the Front End team, as well as a Training and Development Manager.</p>
<p>I work with a variety of large worlwide renowned companies. I have worked on short, medium, and long term projects, ranging from an average two weeks to two years time projects, as a Senior Front End Developer, Team Leader, and Technical Responsible.</p>
</section>
<footer id="follow">
<div>
<h2>Follow Me</h2>
<ul>
<li><a href="https://twitter.com/v2rm" target="_blank" alt="Twitter">Twitter</a></li>
<li><a href="https://www.instagram.com/viniroloff/" target="_blank" alt="Instagram">Instagram</a></li>
<li><a href="https://www.linkedin.com/in/viniciusroloffmarques" target="_blank" alt="LinkedIn">LinkedIn</a></li>
<li><a href="https://github.com/vinimarques" target="_blank" alt="GitHub">GitHub</a></li>
<li><a href="https://www.facebook.com/vinicius.roloffmarques" target="_blank" alt="Facebook">Facebook</a></li>
</ul>
</div>
</footer>
</div>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('sw.js')
.then(function () {
console.log('Service Worker Registered');
});
}
</script>
<script type="text/javascript" src="./bundle.js"></script></body>
</html>