-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (83 loc) · 5.05 KB
/
index.html
File metadata and controls
93 lines (83 loc) · 5.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Eduardo Henriques' Page</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="content/main.css">
</head>
<body>
<nav id="navbar" role="navigation" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="/">EH</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/" title="Home">
<span class="fas fa-home"></span> Home <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="curriculum.html" title="Curriculum">
<span class="fas fa-briefcase"></span> Curriculum Vitae
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/eduardohenriques/" target="_blank" title="LinkedIn">
<span class="fab fa-linkedin-in"></span> LinkedIn
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/efsh" target="_blank" title="Github">
<span class="fab fa-github"></span> Github
</a>
</li>
</ul>
</div>
</nav>
<main role="main">
<div class="jumbotron clearfix">
<img src="content/img/profile-circle.jpg" alt="Eduardo Henriques profile picture" class="float-left rounded-circle"/>
<h1 class="display-4">Who Am I?</h1>
<p class="lead">Hi, I'm Eduardo Henriques, 37, from Rio de Janeiro / Brazil. Actually I'm an experienced Java developer
with a demonstrated history of working in the information technology and services industry.
Skilled in AngularJS, PHP, JavaScript, Java and End-to-end Testing. Strong analysis
professional with a Bachelor's degree focused in Computer Science from Universidade Federal Fluminense</p>
<a class="btn btn-lg btn-primary" href="curriculum.html" role="button">Curriculum Vitae »</a>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Carrer</h2>
<p>I have started my career on the Intern Program on Infoglobo (the largest newspaper in Brazil), in 2007...</p>
<p><a class="btn btn-secondary" href="#" role="button">Read more »</a></p>
</div>
<div class="col-md-4">
<h2>Skills</h2>
<ul>
<li>Java</li>
<li>PHP</li>
<li>Oracle</li>
<li>MySQL</li>
<li>Apache Lucene Solr</li>
</ul>
<p><a class="btn btn-secondary" href="#" role="button">Read more »</a></p>
</div>
</div>
</div>
</main>
<footer class="footer mt-auto py-3">
<div class="container">
<span class="text-muted">2020 - Edufsh copyright © All rights reserved</span>
</div>
</footer>
<script src="https://kit.fontawesome.com/5df21a5272.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>