-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (103 loc) · 5.13 KB
/
Copy pathindex.html
File metadata and controls
105 lines (103 loc) · 5.13 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
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="keywords" content="">
<meta name="description" content="Fernando Lucas Araújo Amaral Website">
<meta name="author" content="Fernando Lucas Araujo Amaral">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
<!-- Boostrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- Font Awesome-->
<link href="fontawesome/css/all.css" rel="stylesheet">
<!--<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>-->
<!-- Style CSS -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Title -->
<title>Fernando Lucas Araújo Amaral</title>
<!-- Favicon -->
<link rel="icon" type="img/png" href="images/favicon_io/favicon-32x32.png">
</head>
<body>
<!-- Section 1: Navigation bar -->
<header>
<!-- Navigation bar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark shadow navbar-site">
<div class="container">
<!-- Logotype and text -->
<a class="navbar-brand" href="index.html">
Fernando Amaral
</a>
<!-- Navigation button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Itens -->
<div class="collapse navbar-collapse text-center" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle desactivate" href="" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">About</a>
<div class="dropdown-menu text-center" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="about.html">Education</a>
<a class="dropdown-item" href="about.html#experience">Experience</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Section: Presentation -->
<section class="pt-5">
<div class="container-fluid presentation">
<div class="row align-items-center h-100">
<div class="col-lg-5 mx-auto about-me text-white py-4 text-center">
<img src="images/eu.jpg">
<h1>Fernando Lucas<br>Araújo Amaral</h1>
<h4 class="py-2 lead">Engineering student</h4>
<p>Hi! My name is Fernando and that is my personal website! Here you will find some informations about my background, my projects and experiences. Feel free to explore :)</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="site-footer text-white bg-dark">
<div class="container pt-3">
<div class="col-md-12">
<div class="footer-links-social text-center">
<a href="https://www.linkedin.com/in/fernandolucasaa/" target="_blank"><i class="fab fa-linkedin-in mx-1"></i></a>
<a href="https://github.com/fernandolucasaa" target="_blank"><i class="fab fa-github mx-1"></i></a>
<a href="https://www.facebook.com/fernando.lucasaa" target="_blank"><i class="fab fa-facebook-f mx-1"></i></a>
<a href="https://www.instagram.com/fernando.lucasaa/" target="_blank"><i class="fab fa-instagram mx-1"></i></a>
</div>
</div>
<hr>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p>© 2020-2021 | Fernando Lucas Araújo Amaral. All rights reserved.</p>
</div>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>