forked from SUContent/Towns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtowns.html
More file actions
37 lines (30 loc) · 722 Bytes
/
towns.html
File metadata and controls
37 lines (30 loc) · 722 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Towns</title>
<link rel="stylesheet" href="towns.css" />
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="towns.js"></script>
</head>
<body>
<h1>Towns</h1>
<select id="towns" size="4">
<option>Sofia</option>
<option>Plovdiv</option>
<option>Varna</option>
<option>Bourgas</option>
</select>
<div>
<input type="text" id="townName" />
<button id="btnDelete">Delete</button>
</div>
<div>
<input type="text" id="townNameForAdd" />
<button id="btnAdd">Add</button>
</div>
<div>
<button id="btnShuffle">Shuffle</button>
</div>
<div id="result"></div>
</body>
</html>