This repository was archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (57 loc) · 2.24 KB
/
index.html
File metadata and controls
62 lines (57 loc) · 2.24 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
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#2196f3" />
<title>Adriano Interaminense</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="src/fonts/css/fontello.css" rel="stylesheet">
<link rel="stylesheet" href="src/css/main.css">
</head>
<body>
<div class="lp flex">
<div id="side" class="lp__side text-white">
<span id="closeMenu" class="icon-cancel lp__btn-menu text-white"></span>
<ul id="pagination" class="lp__pagination"></ul>
<div id="blur" class="lp__side-blur"></div>
<div class="lp__about-me scroll scroll--radius">
<div id="aboutMe"></div>
<br>
<div class="text-right">
<a href="resume.pdf" class="text-white">
<span class="iconfont icon-download"></span> download resume.pdf
</a>
</div>
</div>
</div>
<div class="lp__content">
<header class="header flex flex--vertical-middle flex--space-between">
<div class="header__title">
<strong><span id="openMenu" class="icon-menu header__btn-menu right-gap"></span> My Projects</strong>
</div>
<ul id="socialNetwork" class="header__links"></ul>
</header>
<ul class="lp__projects" id="projects"></ul>
</div>
</div>
<!-- Main.js -->
<script src="src/js/main.js"></script>
<!-- Google Analytics -->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-92220725-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>