-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (44 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon"> -->
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<link rel="stylesheet" href="vendor/css/bootstrap.min.css">
<!-- Material Design Bootstrap -->
<link rel="stylesheet" href="vendor/css/mdb.min.css">
<!-- Your custom styles (optional) -->
<link rel="stylesheet" href="vendor/css/style.css">
<link rel="stylesheet" href="css/index.css">
<title>MATH26</title>
</head>
<body>
<div id="app">
<div class="center">
<div class="d-flex justify-content-center">
<div class="btn-group-vertical" role="group" aria-label="Vertical button group">
<h2 class="text-center" style="margin-bottom: 20px;">Level Selector</h2>
<a type="button" class="btn btn-success btn-rounded waves-effect waves-light" onclick="window.location.replace('easy.html')">Easy</a>
<a type="button" class="btn btn-primary btn-rounded waves-effect waves-light" onclick="window.location.replace('index.html')">Normal</a>
<a type="button" class="btn btn-warning btn-rounded waves-effect waves-light" onclick="window.location.replace('index.html')">Hard</a>
<a type="button" class="btn btn-info btn-rounded waves-effect waves-light" style="margin-top: 50px;" onclick="window.location.replace('rule.html')">Rule</a>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="vendor/js/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="vendor/js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="vendor/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="vendor/js/mdb.min.js"></script>
<script src="cordova.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!--<script src="js/index.js"></script>-->
</body>
</html>