-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 845 Bytes
/
index.html
File metadata and controls
20 lines (19 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>TestTaskJS</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<input type="text" name="input_text" id="input">
<button id="add_button" class="button-simple">Добавить</button>
<div id=radio_box>
<p><input name="sort" checked="true" type="radio" value="ascending_numbers">По возрастанию номера</p>
<p><input name="sort" type="radio" value="descending_numbers">По убыванию номера</p>
<p><input name="sort" type="radio" value="alphabetical">В алфавитном порядке</p>
<p><input name="sort" type="radio" value="reverse_alphabetical">В обратном алфавитном порядке</p>
</div>
<ul id="list_out" class="list"></ul>
<script type="text/javascript" src="main.js"></script>
</body>
</html>