-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.21 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Flashcards</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="screen">
<div id="data-import-div">
<input id="file-input" type="file">
<button id="load-file-button">Carregar</button>
</div>
<div id="stats">
<div id="cards-total-div">
<p id="cards-total-label">Total: </p>
<p id="cards-total-counter">0</p>
</div>
<div id="cards-remaining-div">
<p id="cards-remaining-label">Faltante: </p>
<p id="cards-remaining-counter">0</p>
</div>
</div>
<div id="question-card">
<p id="question-card-content"></p>
</div>
<div id="answer-card">
<p id="answer-card-content"></p>
</div>
<div id="buttons">
<button id="reveal-button">Revelar</button>
<button id="next-button">Próximo</button>
</div>
</div>
</body>