-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/style.css"> <!--chamar a pasta e arquivo-->
<title>FLASHCARD</title>
</head>
<body>
<main> <!--parte principal-->
<section id= "container"> <!--área centralizada na página (um tipo de caixa na parte principal)-->
<!-- <article class="cartao">
<div class="cartao__conteudo">
<h3> Programação </h3>
<div class="cartao_conteudo_pergunta">
<p> O que é HTML?</p>
</div>
<div class= "cartao_conteudo_resposta">
<p> O HTML (Linguagem de Marcação de HiperTexto).</p>
</div>
</div>
</article> -->
</section>
</main>
<footer>
<p>Projeto desenvolvido com o conhecimento adquirido no curso Alura, por Helena.</p>
</footer>
<script src="app.js"></script>
<script src="perguntas.js"></script>
</body>
</html>