-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>sudo q</title>
<meta name="description" content="Type the name">
<script src="./js/lib/jquery-3.2.1.min.js" crossorigin="anonymous"></script>
<!-- <script src="./js/lib/lodash.js"></script>
<script src="./js/objects/globals.js"></script>
<script src="./js/objects/player.js"></script>
<script src="./js/objects/generator.js"></script>
<script src="./js/objects/sudoku.js"></script>
<script src="./js/ui.js"></script> -->
<!--<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">-->
<link href="./css/styles.min.css" rel="stylesheet">
<script>
$(document).ready(function() {
$('#ultra-input').focus()
});
</script>
</head>
<body>
<form action="game.html" id="initial-form">
<input type="text" id="ultra-input" autocomplete="off">
<input type="submit" style="position: absolute; left: -9999px"/>
</form>
<footer>
Made at <img src="./img/iron-hack-logo.png" width="40" height="43" alt="IronHack logo">
</footer>
</body>
</html>