forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 945 Bytes
/
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 http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RxDB Heroes vanilla</title>
<link href="style.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" />
<script src="dist/rxdb.browserify.js"></script>
</head>
<body id="app">
<h1> RxDB Heroes vanilla</h1>
<div id="list-box" class="box">
<div id="leader-icon">♛</div>
<h3>Heroes</h3>
<ul id="heroes-list">Starting database..</ul>
</div>
<div id="insert-box" class="box">
<h3>Add Hero</h3>
<input type="text" placeholder="Name" name="name" />
<input type="text" placeholder="Color" name="color" />
<button onclick="addHero();">Insert</button>
</div>
<script src="main.js"></script>
</body>
</html>