-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.66 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.66 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>7DAYSOFCODE</title>
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<header>
<img id="logo-home" src="assets/logo-home.svg" alt="Logo 7DAYSOFCODE" />
</header>
<main>
<div class="line-yellow"></div>
<h1>DESAFIOS</h1>
<section class="container">
<h2>LÓGICA COM JAVASCRIPT</h2>
<div class="challenges-nav">
<a class="challenge-link" href="desafios/day_01.html">Dia 1</a>
<a class="challenge-link" href="desafios/day_02.html">Dia 2</a>
<a class="challenge-link" href="desafios/day_03.html">Dia 3</a>
<a class="challenge-link" href="desafios/day_04.html">Dia 4</a>
</div>
<div class="challenges-nav">
<a class="challenge-link" href="desafios/day_05.html">Dia 5</a>
<a class="challenge-link" href="desafios/day_06.html">Dia 6</a>
<a class="challenge-link" href="desafios/day_07.html">Dia 7</a>
</div>
</section>
</main>
<footer>
<p>
© 2025 | Desenvolvido com ❤️ por
<a href="https://github.com/SimoesLeticia" class="highlight" target="_blank" rel="noopener noreferrer">
Letícia Simões
</a>
</p>
</footer>
</body>
</html>