-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.28 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
<!DOCTYPE html>
<html lang="de_DE">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flashcards</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<div id="buttons">
<button id="yesButton" onclick="answer(true)">Weiß ich</button>
<button id="nextButton" onclick="next()">Nächste</button>
<button id="noButton" onclick="answer(false)">Keine Ahnung</button>
<button id="oopsButton" onclick="falseYes()">Doch Keine Ahnung</button>
</div>
<button class="menuButton openMenuButton" onclick="toggleMenu()"><span class="material-symbols-outlined">menu</span></button>
<div id ="sideMenu">
<button class="menuButton closeMenuButton" onclick="toggleMenu()"><span class="material-symbols-outlined">close</span></button>
<div id="menu">
<h2>Menu</h2>
</div>
</div>
<p id="title"></p>
<p id="description"></p>
<script src="classes.js"></script>
<script src="main.js"></script>
<script src="menu.js"></script>
</body>
</html>