-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (46 loc) · 1.54 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flash Cars</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Flash Cars</h1>
<button class="start-button">Start Game</button>
<div class="score">
<aside>Score Right: <span class="score-right">0</span>/10</aside>
<aside>Score Wrong: <span class="score-wrong">0</span>/5</aside>
</div>
<section id="flashcard">
<!-- <article class="card">
<div class="question-container">
<div class="question"></div>
</div> -->
<!-- <div class="answer-container"> -->
<!-- <div class="answer"></div> -->
<!-- </div> -->
<!-- </article> -->
<!-- <div class="card-stack-1"></div>
<div class="card-stack-2"></div>
<div class="card-stack-3"></div> -->
</section>
<section id="controls">
<form>
Type your answer here<br>
<input type="text" class="input">
<br>
<input type="submit" value="submit">
</form>
<button class="next-card">Next Card</button>
<button class="reset-game">Play Again!</button>
</section>
<div id="modal">
<a href="#" id="close">Close</a>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ymPpIzaanhY" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<script src="script.js"></script>
</body>
</html>