-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (19 loc) · 794 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (19 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Elm Encounters</title>
<meta name="description" content="Elm Encounters is an encounter builder for Dungeons & Dragons 5th edition built with the Elm programming language.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="public/css/application.css" >
<!-- Place favicon.ico in the root directory -->
</head>
<body>
<!-- Google Font Load -->
<lik href='https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400italic,700' rel='stylesheet' type='text/css'>
<div id="app"></div>
</body>
<script src="elm.js"></script>
<script type="text/javascript">
Elm.Main.embed(document.getElementById('app'))
</script>