-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (49 loc) · 2.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<title>Mini Learn</title>
</head>
<body class="container">
<span id="navbar">
<button id="menu" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">+</button>
<div id="menulist" class="dropdown-menu" aria-labelledby="menu">
<a class="dropdown-item" href="index.html">Home</a>
<a class="dropdown-item" href="math.html">Math</a>
<a class="dropdown-item" href="reachOut.html">Reach Out</a>
<a class="dropdown-item" href="credits.html">Credits</a>
</div>
</span>
<div class="form-section">
<div>
<button id="deck">Start</button>
<div id="time">.</div>
</div>
<img id="deck_image" src="./img/hillsunset.png" alt="">
<span class="btnOps">
<span class="btnRow1">
<button class="btnStyle"><img class="card_image" src="" alt="test"></button>
<button class="btnStyle"><img class="card_image" src="" alt=""></button>
</span>
<span class="btnRow2">
<button class="btnStyle"><img class="card_image" src="" alt=""></button>
<button class="btnStyle"><img class="card_image" src="" alt=""></button>
</span>
</span>
<footer class="footer"></footer>
</div>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="app.js"></script>
<audio preload="auto" src="./sounds/ding.mp3"></audio>
<audio preload="auto" src="./sounds/no.mp3"></audio>
<link rel="icon" href="path/to/favicon.png" type="image/png">
<a class="sunset-cred" href="https://www.flaticon.com/free-icons/sunset" title="sunset icons">Sunset icons created
by Freepik - Flaticon</a>
</body>
</html>