-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 942 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Towers of Hanoi</title>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;700;800;900&display=swap" rel="stylesheet">
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<!-- main js (generated by webkit -- requires game functionality files) -->
<script src="./dist/main.js"></script>
<!-- main stylesheet -->
<link rel="stylesheet" type="text/css" href="./css/towers.css">
</head>
<body>
<figure class = 'view-figure center'>
<h1>Towers Of Hanoi</h1>
</figure>
<div class ="modal"></div>
</body>
</html>