-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<title>Maths Tutor</title>
</head>
<body>
<div class="menu">
<h1>Maths Tutor</h1>
<h4>Practise addition and multiplication!</h4>
<a href="./pages/addition.html">
<button id="addn">Practise addition</button>
</a>
<a href="./pages/multiplication.html">
<button id="multn">Practise multiplication</button>
</a>
<button id="closeApp">Quit</button>
<script src="./scripts/render.js"></script>
</div>
</body>
</html>