-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 858 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
<!DOCTYPE html>
<html>
<head>
<title>Shell Sort</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1 class="head-title">Shell Sort</h1>
<form class="form-sort">
<input type="text" id="f-1" />
<input type="text" id="f-2" />
<input type="text" id="f-3" />
<input type="text" id="f-4" />
<input type="text" id="f-5" />
<input type="text" id="f-6" />
<input type="text" id="f-7" />
<input type="text" id="f-8" />
<input type="text" id="f-9" />
<input type="text" id="f-10" />
<span class="form-more"> + </span>
<span class="form-btn">
<button type="button" class="btn">Sort</button>
</span>
</form>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>