-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.16 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
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Draw table with chars</title>
</head>
<body>
<div id="ctn"></div>
<script src="drawTableWithChars.js"></script>
<script>
drawTables.init(document.getElementById('ctn'), {
// title: [
// {content: 'Database', col: 6}
// ],
direction: [],
data: [
[
{content: 'users', col: 6}
],
['username', 'password'],
[
{content: 'readers', col: 6}
],
['name', 'number', 'arrear'],
[
{content: 'books', col: 6}
],
['name', 'price', 'reader_id', 'start', 'continue', 'broken'],
[
{content: 'fines', col: 6}
],
['reader', 'book', 'money'],
[
{content: 'records', col: 6}
],
['reader', 'book', 'start', 'end', 'broken', 'money']
]
});
</script>
</body>
</html>