-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
57 lines (55 loc) · 1.23 KB
/
editor.html
File metadata and controls
57 lines (55 loc) · 1.23 KB
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
<html>
<head>
<script src="editor.js"></script>
<link href="editor.css" rel="stylesheet" type="text/css"/>
<title>Simple svg-editor</title>
</head>
<body>
<form>
<textarea id="head" name="head" rows="1" cols="36" wrap="off">
New Heading
</textarea>
<br/>
<textarea id="text" name="text" rows="11" cols="51">
Things
to
say
in this multiline slide...
</textarea>
<textarea id="code" name="code"rows="19" cols="50">
</textarea>
<select id="text_align" name="text_align">
<option>Left</option>
<option>Left Centered</option>
<option>Centered</option>
<option>Right Centered</option>
<option>Right</option>
</select>
<select id="text_size" name="text_size">
<option>48</option>
<option>50</option>
<option>60</option>
<option>70</option>
<option>80</option>
<option>90</option>
<option>100</option>
</select>
<select id="color" name="color">
<option>Gold</option>
<option>Red</option>
<option>Orange</option>
<option>Yellow</option>
<option>PaleGreen</option>
<option>Aqua</option>
<option>LightPink</option>
</select>
<button>Submit</button>
</form>
<button id="next">Next</button>
<div id="wrapper">
<object id="svg" type="image/svg+xml" data="test.svg"></object>
</div>
<textarea id="csv" name="code" rows="40" cols="50">
</textarea>
</body>
</html>