-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 990 Bytes
/
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">
<title>Flashcard</title>
</head>
<body>
<main>
<section id="container">
<!-- <article class="cartao">
<div class="cartao__conteudo">
<h3>Programação</h3>
<div class="cartao__conteudo__pergunta">
<p>O que é JavaScript?</p>
</div>
<div class="cartao__conteudo__resposta">
<p>O JavaScript é uma linguagem de programação</p>
</div>
</div>
</article> -->
</section>
</main>
<footer>
<p>Projeto desenvolvido pela Alura, sem fins lucrativos</p>
</footer>
<script src="app.js"></script>
<script src="perguntas.js"></script>
</body>
</html>