-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.47 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
<html>
<head>
<title>Text to handwritten</title>
<meta name="description" content=""/>
<desc
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="javascript/app.js"></script>
<style>
img{
height: 38px;
}
</style>
</head>
<body>
<div class="w3-header w3-deep-orange w3-card-2">
<div class="w3-container">
<span class="w3-xxlarge">text to eppisai's handwriting</span>
</div>
</div>
<div class="w3-row ">
<div class="w3-col l6 w3-container">
<p></p>
<div class="w3-card-2 w3-round-large w3-padding">
<textarea style="height: 400px;" oninput="convert()" class="w3-input" placeholder="Write your text" id="data" name="data"></textarea>
<p></p>
<button class="w3-btn w3-round-large w3-deep-orange" onclick="convert()">Convert</button>
<p></p>
</div>
<p></p>
</div>
<div class="w3-col l6 w3-container">
<p></p>
<div>
<div id="output">
</div>
</div>
</div>
</div>
</body>
</html>