-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting_ground.html
More file actions
executable file
·50 lines (47 loc) · 1.57 KB
/
testing_ground.html
File metadata and controls
executable file
·50 lines (47 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="main_menu.css">
<link rel="stylesheet" href="breadcrumbs.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.4.2/seedrandom.js">
</script>
<script src="main_menu.js"></script>
<title>Prep4Act - Home Menu</title>
</head>
<body>
<div class="col-md-12 text-center">
<ul class="breadcrumb">
<li>Main Menu</li>
</ul>
<div class="row">
<div class="col-md-12 text-center" id = "main">
<div id="intro">
Prep4Act
</div>
<div class="col-md-12 text-center" id="practice_container">
<a href="pract_mode_menu.html" >
<button id="practice_mode_button">Practice Mode</button>
</a>
</div>
<br>
<div class="col-md-12 text-center" id="timed_container">
<a href="timed_mode_menu.html">
<button id="timed_mode_button">Timed Mode</button>
</a>
</div>
<br>
<div class="col-md-12 text-center" id="about_container">
<a href="about.html">
<button id="about_button">About</button>
</a>
</div>
</div>
</div>
</div>
</body>
</html>