-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.71 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
<!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>Imersão Dev - Aula 10</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header class="header">
<div class="profile">
<img class="profile-img" src="https://avatars.githubusercontent.com/u/84347994?v=4">
<div class="title">
<h1>Cauã Olivio</h1>
<h3>Software Developer</h3>
</div>
</div>
<div class="theme">
<button onclick="changeTheme()">Alterar Tema</button>
</div>
</header>
<main class="projects">
<ul class="projects-title"><b>Projetos</b></ul>
<li class="projects-item"><a href="./aula01/index.html">🔢Calculadora de média</a></li>
<li class="projects-item"><a href="./aula02/index.html">💸Conversor de Moeda</a></li>
<li class="projects-item"><a href="./aula03/index.html">🧠Mentalista</a></li>
<li class="projects-item"><a href="./aula04/index.html">🎬Aluraflix</a></li>
<li class="projects-item"><a href="./aula05/index.html">🎬Aluraflix</a></li>
<li class="projects-item"><a href="./aula06/index.html">🏆Tabela de classificação</a></li>
<li class="projects-item"><a href="./aula07/index.html">🃏Super Trunfo</a></li>
<li class="projects-item"><a href="./aula08/index.html">🃏Super Trunfo</a></li>
</main>
</div>
<script src="logic.js"></script>
</body>
</html>