-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (29 loc) · 1.11 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width">
<title>Multi Input (Elm)</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles/multi-input.css">
<link rel="stylesheet" href="demo/demo.css">
<meta property="og:url" content="https://larribas.github.io/elm-multi-input/"/>
<meta property="og:title" content="Multi Input"/>
<meta property="og:description" content="A multiple-value input for Elm"/>
</head>
<body>
<header>
<span class="logo"><span class="multi">*</span><span class="pipe">|></span></span>
<h1>Multi Input</h1>
<a class="on-github" href="https://github.com/larribas/elm-multi-input">View on GitHub (larribas/elm-multi-input)</a>
</header>
<div id="main"></div>
<script src="demo/demo.js"></script>
<script>
var app = Elm.Demo.init({
node: document.getElementById("main")
});
</script>
</body>
</html>