-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
42 lines (42 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title> J. Guilherme Coelho</title>
<link rel="stylesheet" href="./style.css" />
<script
defer
src="https://use.fontawesome.com/releases/v5.8.1/js/brands.js"
integrity="sha384-rUOIFHM3HXni/WG5pzDhA1e2Js5nn4bWudTYujHbbI9ztBIxK54CL4ZNZWwcBQeD"
crossorigin="anonymous"
></script>
<script
defer
src="https://use.fontawesome.com/releases/v5.8.1/js/fontawesome.js"
integrity="sha384-EMmnH+Njn8umuoSMZ3Ae3bC9hDknHKOWL2e9WJD/cN6XLeAN7tr5ZQ0Hx5HDHtkS"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="home">
<header>
<h1>Hi, I'm </br>
<span id="name">Guilherme Coelho</span>!</h1>
<h2>a developer and Computer Science student.</h2>
<div class="social-links">
<a href="https://github.com/jguilhermecoelho">
<i class="fab fa-github" title="Github"></i>
</a>
<a href="https://www.linkedin.com/in/jguilhermecoelho/">
<i class="fab fa-linkedin" title="LinkedIn"></i>
</a>
<a href="https://twitter.com/guilhermecoelo">
<i class="fab fa-twitter" title="Twitter"></i>
</a>
<a href="https://instagram.com/jguilhermecoelhoo">
<i class="fab fa-instagram" title="Instagram"></i>
</a>
</div>
</header>
</body>
</html>