-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 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
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Simple kids game where you have to guess the words of an obscure language.">
<title>Bohdilang</title>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="https://bohdilang.rapin.com/prod.min.js"></script>
<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="icon" href="data:;base64,iVBORwOKGO=" />
<style>
.btn:focus, .btn:active {
outline: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
}
.btn {
min-width: 80px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
Elm.Main.init({
node: document.getElementById("app")
})
</script>
</body>
</html>