forked from TheHenker/dice-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 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
<!doctype html>
<head>
<title>Dark Dice</title>
<link href="https://bootswatch.com/cyborg/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="custom.css" rel="stylesheet"> <!-- Recommendation: Put your CSS customizations in custom.css -->
</head>
<body>
<div id="app"></div>
<script src="node_modules/react/dist/react.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/CBuffer/cbuffer.js"></script>
<script src="vendor/cryptojs-sha256-3.1.2.js"></script>
<script src="node_modules/socket.io-client/socket.io.js"></script>
<script src="vendor/lodash.min.js" type="text/javascript"></script>
<script src="node_modules/wolfy87-eventemitter/EventEmitter.js"></script>
<script src="node_modules/bootstrap/js/tooltip.js"></script>
<script src="node_modules/bootstrap/js/popover.js"></script>
<script src="app.js" type="text/javascript"></script>
<script src="//www.google.com/recaptcha/api.js?render=explicit&onload=onRecaptchaLoad" async defer></script>
</body>