-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflashcards.html
63 lines (50 loc) · 1.42 KB
/
flashcards.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
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/flashcards.css">
<link rel="stylesheet" href="styles/common.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>Flashcards</title>
</head>
<body>
<header>
<div class="nav-open">
<i class="material-icons">dehaze</i>
</div>
</header>
<div class="flashcards_page">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<h2 class="main-word"></h2>
</div>
<div class="flip-card-back">
<div class="helper">
<div class="word_container synonyms">
<span class="title">Synonyms</span>
<hr>
<span class="words"></span>
</div>
<div class="word_container antonyms">
<span class="title">Antonyms</span>
<hr>
<span class="words"></span>
</div>
</div>
</div>
</div>
</div>
<button class="next">Next</button>
</div>
<div class="backdrop">
<nav>
<div class="nav-close">
<i class="material-icons">close</i>
</div>
</nav>
</div>
<script type="module" src="scripts/flashcards.js"></script>
</body>
</html>