-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (20 loc) · 1.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Type Defense</title>
<meta name="description" content="A simple tower defense like typing game">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/a1c4b21e48.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fpsmeter/0.3.1/fpsmeter.min.js"></script>
</head>
<body>
<button type="button" class="btn btn-info btn-lg btn-center" onclick="changeCase()" accesskey="c"><i class="fas fa-font"></i> <u>C</u>ase <span id="change-case-text"></span>sensitive</button>
<canvas id="canvas">Your browser doesn't support HTML5.</canvas>
<script src="js/canvas.js"></script>
<script src="js/particle.js"></script>
<script src="js/main.js"></script>
</body>
</html>