-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML-formelements.html
34 lines (34 loc) · 1.09 KB
/
HTML-formelements.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
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>HTML Form Elements</title>
</head>
<body>
<div>
<h1>Exercise 1</h1>
<p>In the form below, add an empty drop down list with the name "cars"</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
<select name="cars"></select>
</form>
</div>
<div>
<h1>Exercise 2</h1>
<p>In the form below, add two option elements to the drop down list.<br>The first option must have the value "Volvo"<br>The second option must have value "Ford"</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
<select name="cars">
<option value="Volvo">Volvo</option>
<option value="Ford">Ford</option>
</select>
</form>
</div>
<div>
<h1>Exercise 3</h1>
<p>In the form below, add a text area with the name "note"</p>
<form action="https://github.com/zero-to-mastery/complete-web-developer-manual">
Note: <textarea name="note"></textarea>
</form>
</div>
<a href="index.html">
<h2>Go Back</h2>
</body>
</html>