diff options
Diffstat (limited to 'flashcards.html')
| -rw-r--r-- | flashcards.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/flashcards.html b/flashcards.html new file mode 100644 index 0000000..1dba5e8 --- /dev/null +++ b/flashcards.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>Flashcard</title> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <div id="flashcard"> + <div id="flashcard-front"></div> + <div id="flashcard-back"></div> + </div> + + <div class="status-section"> + <div id="status-info"> + No cards loaded! + </div> + <hr> + <input type="file" id="cards-input" accept=".json" /> + </div> + + <div class="button-container"> + <button class="rating-button">Forgot</button> + <button class="rating-button">Hard</button> + <button class="rating-button">Medium</button> + <button class="rating-button">Easy</button> + </div> + + <div id="toast"></div> + + <script src="script.js"></script> + </body> +</html> |