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
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>test extra form</title>
<style>
input[type="text"] ,input[type="email"]{
border: 1px solid blue;
}
</style>
</head>
<body>
<form>
<div>
<label for="nickname">Your nickname:</label>
</div>
<div>
<input type="text" id="nickname" name="nickname">
</div>
<div>
<label for="user-email">Your e-mail:</label>
</div>
<div>
<input type="email" id="user-email" name="user-email">
</div>
<div>
<label for="content">Content:</label>
</div>
<div>
<textarea rows="10" cols="50" id="content" name="content" placeholder="Enter a comment here. Be nice and polite!"></textarea>
</div>
<div>
<input type="submit" value="Add">
</div>
</form>
</body>
</html>