-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathip10b.html
More file actions
23 lines (22 loc) · 739 Bytes
/
ip10b.html
File metadata and controls
23 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Change color</title>
</head>
<body>
<form action="http://localhost:8080/servlet/ChangeColor" method="get">
<select name="color" size="1">
<option value="Red" >Red</option>
<option value="Blue">Blue</option>
<option value="Black">Black</option>
<option value="Brown">Brown</option>
<option value="White">White</option>
<option value="Yellow">Yellow</option>
<option value="Orange">Orange</option>
<option value="Green">Green</option>
</select>
<br>
<br>
<input type="submit" value="Change color">
</form>
</body>
</html>