-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 2.71 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<link href="build/styles.min.css" rel="stylesheet" />
<title>easy html table maker</title>
</head>
<body>
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="icon-text-align-left" viewBox="0 0 32 32">
<path d="M0 2h32v4h-32zM0 8h20v4h-20zM0 20h20v4h-20zM0 14h32v4h-32zM0 26h32v4h-32z"></path>
</symbol>
<symbol id="icon-text-align-center" viewBox="0 0 32 32">
<path d="M0 2h32v4h-32zM6 8h20v4h-20zM6 20h20v4h-20zM0 14h32v4h-32zM0 26h32v4h-32z"></path>
</symbol>
<symbol id="icon-text-align-right" viewBox="0 0 32 32">
<path d="M0 2h32v4h-32zM12 8h20v4h-20zM12 20h20v4h-20zM0 14h32v4h-32zM0 26h32v4h-32z"></path>
</symbol>
<symbol id="icon-vertical-align-baseline" viewBox="0 0 32 32">
<path d="M2 6h28v6h-28zM2 14h28v6h-28zM2 22h28v6h-28z"></path>
</symbol>
<symbol id="icon-vertical-align-middle" viewBox="0 0 44 32">
<path d="M0 6h28v6h-28v-6zM0 14h28v6h-28v-6zM0 22h28v6h-28v-6z"></path>
<path d="M31 18l6 6 6-6z"></path>
<path d="M43 16l-6-6-6 6z"></path>
</symbol>
<symbol id="icon-vertical-align-bottom" viewBox="0 0 44 32">
<path d="M0 6h28v6h-28v-6zM0 14h28v6h-28v-6zM0 22h28v6h-28v-6z"></path>
<path d="M31 14l6 6 6-6z"></path>
</symbol>
<symbol id="icon-vertical-align-top" viewBox="0 0 44 32">
<path d="M0 6h28v6h-28v-6zM0 14h28v6h-28v-6zM0 22h28v6h-28v-6z"></path>
<path d="M31 20l6-6 6 6z"></path>
</symbol>
</defs>
</svg>
<h1>easy html <span>table</span> maker</h1>
<noscript>Please enable JS to use the table maker.</noscript>
<div id="loading-modal" class="loading-modal">
<div class="loading-circle" aria-hidden="true"></div>
<span>Loading</span>
</div>
<div id="editor-area" class="editor-area">
<h2>table editor</h2>
<div id="editor-table-container"></div>
</div>
<section class="table-code-and-preview-section">
<div id="markup">
<div class="title-and-copy-button">
<h2>table markup</h2>
<div id="markup-controls"></div>
</div>
<code id="table-code"></code>
</div>
<div id="preview">
<h2>table preview</h2>
</div>
</section>
<script type="text/javascript" src="build/index.min.js"></script>
</body>
</html>