-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.14 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<title>Sort columns</title>
<link rel="stylesheet" type="text/css" href="https://dohliam.github.io/dropin-minimal-css/min/milligram.min.css">
<link rel="stylesheet" type="text/css" href="sort.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="sort.js" type="text/javascript"></script>
</head>
<body onload="window.sortcol.focus();">
<center>
<h2>Sort columns</span></h2>
<h3>Input:</h3>
<p>
<textarea type="text" rows="10" cols="50" style="font-size: 16px" value="" id="sortcol"></textarea>
<br>
<input type="button" onclick="sort();" value="sort!">
<input type="button" onclick="uniq();" value="uniq!">
<input type="button" onclick="uniqd();" value="uniq -d!">
<input type="button" onclick="reverse();" value="reverse!">
<input type="button" onclick="random();" value="random!">
<p>
Input Separator: <input type="text" value="\n" id="insep">
Output Separator: <input type="text" value="\n" id="outsep">
<br>
</body>
</html>