-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (51 loc) · 2.05 KB
/
index.html
File metadata and controls
61 lines (51 loc) · 2.05 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navegação do Site</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<button id="theme-toggle" class="theme-toggle-btn">
<i class="bi bi-sun-fill" id="theme-icon"></i>
</button>
<main class="container">
<h1 class="title">Meus Projetos</h1>
<div class="card-container">
<a href="1 - eventoOngGirarus/index.html" class="card" target="_blank">
<div class="card-icon">
<i class="bi bi-flower1" style="color: yellow;"></i>
</div>
<h2 class="card-title">Projeto 1 - Evento Ong Girarus</h2>
</a>
<a href="2 - festaBobEsponja/index.html" class="card" target="_blank">
<div class="card-icon">
🧽
</div>
<h2 class="card-title">Projeto 2 - Festa do Bob Esponja</h2>
</a>
<a href="3 - cafeComAnimaizinhos/index.html" class="card" target="_blank">
<div class="card-icon">
<i class="bi bi-cup-hot-fill" style="color: burlywood;"></i>
</div>
<h2 class="card-title">Projeto 3 - Café com Animaizinhos</h2>
</a>
<a href="4 - rickEMorty/index.html" class="card" target="_blank">
<div class="card-icon">
🧪
</div>
<h2 class="card-title">Projeto 4 - Rick e Morty</h2>
</a>
<a href="5 - fnafAPI/index.html" class="card" target="_blank">
<div class="card-icon">
🐻
</div>
<h2 class="card-title">Projeto 5 - Five Nights at Freddy's</h2>
</a>
</div>
</main>
<script src="script.js"></script>
</body>
</html>