-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 762 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tuxedo</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="tuxedo.css" rel="stylesheet">
</head>
<body>
<div id="console" tabindex="1"></div>
<script src="tuxedo.js"></script>
<script type="text/javascript">
// load jquery
window.$ = window.jQuery = require('jquery');
initialize(document.getElementById("console"));
</script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>