-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (31 loc) · 946 Bytes
/
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
<html>
<head>
<meta></meta>
<script src="source.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div>
<div>
<label for="sourcecode">Old source Code</label>
</div>
<textarea name="foo" id="sourcecode" cols="30" rows="20" oninput="foobar()"></textarea>
<div>
<div>
<label for="oldline">old line number</label>
</div>
<input id="oldline" type="number" value="10" min="10" onchange="foobar()"> </div>
</div>
<div>
<div>
<label for="output">New source code</label></div>
<textarea name="output" readonly="true" id="output" cols="30" rows="20"></textarea>
<div>
<div>
<label for="newline">new line number</label></div>
<input id="newline" type="number" value="20" min="20" onchange="foobar()"></div>
</div>
</div>
</body>
</html>