-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaulas.html
54 lines (53 loc) · 1.74 KB
/
aulas.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
49
50
51
52
53
54
<!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>Aulas</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
<script src="js/script.js"></script>
</head>
<body>
<header>
<a href="index.html" >
<img src="img/arrow.png" alt="Voltar" class = 'seta'>
</a>
<h1>Aulas</h1>
</header>
<main>
<ul class="coluna botoes">
<li><h2 class="botao"><a href="aula_criptomoeda.html">Curso básico de moedas digitais</a></h2></li>
<li><h2 class="botao">Em breve: Curso básico de fundos imobiliários</h2></li>
<li><h2 class="botao">Em breve: Curso básico de investimento em ações</h2></li>
</ul>
</main>
<footer class = 'center corpo'>
<figure class = 'flex_imagens'>
<a href = 'index.html'>
<img src = 'img/house.png'
alt = ''
class = 'imagens'
>
</a>
<a href = "simulador.html">
<img src = "img/calculator.jpg"
class = 'imagens'
alt="">
</a>
<a href = "tela_gastos.html">
<img src = "img/cifrao_318-60525-3396452295.jpg"
class = 'imagens'
alt="">
</a>
<a href = "aulas.html">
<img src = "img/book.png"
class = 'imagens'
alt="">
</a>
</figure>
</footer>
</body>
</html>