forked from chanind/hanzi-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Hanzi Writer</title>
<!-- <link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" href="styles.css" />
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
</head>
<body>
<h1 class="title">Hanzi Writer</h1>
<form class="js-char-form char-form">
<label>
Character
<input type="text" class="js-char char-input" size="1" maxlength="1" value="我" />
</label>
<button type="submit">Update</button>
</form>
<div class="actions">
<button class="js-toggle">Show/hide</button>
<button class="js-toggle-hint">Outline on/off</button>
<button class="js-animate">Animate</button>
<button class="js-quiz">Quiz yourself</button>
</div>
<div id="target">
</div>
<!-- <script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script> -->
<script type="application/javascript" src="../dist/hanzi-writer.js"></script>
<script type="application/javascript" src="test.js"></script>
</body>
</html>