-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Hérson Reis Rezende dos Santos">
<meta name="description" content="Portifólio Web">
<title>Portfólio - Hérson Rezende</title>
<link rel="shortcut icon" href="media/images/icon.png" type="image/x-icon" />
<link rel="stylesheet" href="styles/global.css" type="text/css">
<link rel="stylesheet" href="styles/modal.css" type="text/css">
<link rel="stylesheet" href="vendor/fontawesome-free/css/all.min.css">
</head>
<body id="body-app">
<div class="background"></div>
<div id="container" class="container">
<div id="content-top" class="content-top">
<div id="apresentation" class="apresentation">
<h1>Hi,</h1>
<h1>I'm Hérson</h1>
<div id="links" class="links">
<a href="https://github.com/hrezend" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/hrezend/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://stackoverflow.com/users/17279836" target="_blank">
<i class="fab fa-stack-overflow"></i>
</a>
<a href="https://www.instagram.com/hrezend/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<div id="contact" class="contact">
<h2>Need a software developer?</h2>
<span class="button-contact">
<a href="https://wa.me/5575998878594" target="_blank"></a>
</span>
</div>
</div>
<div id="content-bottom" class="content-bottom">
<div id="topics" class="topics">
<button id="my-graduations" onclick="createModalMyGraduations()">
<i class="fas fa-user-graduate"></i>
</button>
<button id="my-experiences" onclick="createModalMyExperiences()">
<i class="fas fa-history"></i>
</button>
<button id="my-languages" onclick="createModalMyLanguages()">
<i class="fas fa-language"></i>
</button>
</div>
<div class="technologies">
<span></span>
<span></span>
<span></span>
<span></span>
<i id="fab-technologies" class="fab fa-html5"></i>
</div>
</div>
<span class="span-size-device">*for a better experience you must use a largest resolution device</span>
</div>
<!-- Custom scripts for this template -->
<script src="scripts/app.js"></script>
<script src="scripts/modal.js"></script>
</body>
</html>