-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (46 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfólio</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/067f1ddc73.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<div class="bg-container">
<div class="bg-img"></div>
</div>
<div class="title-box">
<img class="perfil-foto" src="https://github.com/oElmoJr.png" alt="" />
<h1>Elmo Junior</h1>
<p class="title-box-text">Estudande de Ciências da Computção</p>
<p class="hashtag title-box-text">
<a href="https://imersao.dev/" target="_blank">#imersãodev</a>
<a href="https://alura.com.br/" target="_blank">#alura</a>
</p>
</div>
</header>
<main id="main"></main>
<footer>
<div class="icons">
<a href="https://github.com/oElmoJr/imersaodev4" target="_blank"
><i class="fab fa-github fa-2x"></i
></a>
<a href="https://www.linkedin.com/in/elmojr/" target="_blank"
><i class="fab fa-linkedin fa-2x"></i
></a>
<a href="https://www.instagram.com/_elmojr/" target="_blank"
><i class="fab fa-instagram fa-2x"></i
></a>
</div>
<p>Projetos feitos durante a 4º edição da imersão-dev da alura</p>
</footer>
<script src="script.js"></script>
</body>
</html>