-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html lang="pt-br">
<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>#boraCodar - Desafios</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<main>
<h1>Desafios #boraCodar - Rocketseat</h1>
<p class="tip">Clique no projeto para ver a página</p>
<p id="challenges-number"><span></span> Desafios concluídos</p>
<ul id="challenges"></ul>
</main>
<footer>
<h2>Contato</h2>
<p>👋Olá, eu sou o Lucas</p>
<ul>
<li>
<a href="https://github.com/lucasregisdemoraes" target="_blank">GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/lucas-regis-55597921b" target="_blank">Linkedin</a>
</li>
<li>
<a href="https://lucasregisdemoraes.github.io" target="_blank">Minha Página</a>
</li>
<li>
<a href="https://lucasregisdemoraes.github.io/pages/projects" target="_blank">Meu Portfólio Completo</a>
</li>
</ul>
</footer>
<script src="./challenges-list.js"></script>
<script src="./script.js"></script>
</body>
</html>