-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartists.html
More file actions
37 lines (37 loc) · 1.32 KB
/
artists.html
File metadata and controls
37 lines (37 loc) · 1.32 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Famous Artists Flash Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<a href="index.html" class="back-button">← Back to Collections</a>
<h1>Famous Artists Flash Cards</h1>
<div class="flashcard-container">
<div class="flashcard">
<div class="card-inner">
<div class="card-front">
<p>Question</p>
</div>
<div class="card-back">
<p>Answer</p>
<div class="feedback-buttons">
<button id="stillLearningBtn">I'm still learning this</button>
<button id="knewThisBtn">I knew this</button>
</div>
</div>
</div>
</div>
</div>
<div class="controls">
<button id="prevBtn">Previous</button>
<button id="randomBtn">Random</button>
<button id="nextBtn">Next</button>
</div>
</div>
<script src="artists-cards.js"></script>
</body>
</html>