-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (76 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pau Mateu</title>
<link href="css/bootsrtap_css/bootstrap.min.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/x-icon" href="assets/logo2.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Lobster&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- CSS BOOTSTRAP -->
<link rel="stylesheet" href="css/style.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-179236650-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-179236650-1");
</script>
</head>
<body>
<div class="main">
<div class="row">
<div class="header col-12">
<h1 class="name">
<span> { </span>
<span> Pau Mateu </span>
<span> } </span>
</h1>
<h2 class="subtitle">
<span
class="txt-type"
data-wait="2500"
data-words='["Frontend developer", "Backend developer","Mobile developer", "Software engineer"]'
></span>
</h2>
</div>
</div>
<div class="navigation" id="container">
<div class="navigation_container" id="inner">
<div class="item">
<a href="about.html">
<div class="title" id="about">ABOUT</div>
</a>
</div>
<div class="item">
<a href="work.html">
<div class="title" id="work">WORK</div>
</a>
</div>
<div class="item">
<a href="contact.html">
<div class="title" id="contact">CONTACT</div>
</a>
</div>
</div>
</div>
</div>
<!-- Bootstrap JQuery JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>