Skip to content

Commit 8f7d27d

Browse files
Update Question9.html
1 parent d232333 commit 8f7d27d

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

templates/Question9.html

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,19 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<title>Default Form Values</title>
4+
<meta charset="UTF-8">
5+
<title>Default Form Values</title>
66
</head>
77
<body>
88

99
<form>
10-
11-
<input type="text" value="John"><br>
12-
<input type="password" value="password123"><br>
13-
<input type="number" value="10"><br>
14-
<input type="email" value="john@example.com"><br>
15-
16-
<input type="checkbox" checked> Checkbox<br>
17-
<input type="radio" name="g" checked> Option<br>
18-
19-
<select>
20-
<option selected>Default Option</option>
21-
<option>Another Option</option>
22-
</select><br>
23-
24-
<textarea>Default text</textarea>
25-
10+
<input type="text" value="John Doe">
11+
<input type="email" value="john@example.com">
12+
<input type="number" value="25">
13+
<input type="checkbox" checked>
14+
<input type="radio" checked>
15+
<input type="date" value="2024-01-01">
16+
<textarea>Default text</textarea>
2617
</form>
2718

2819
</body>

0 commit comments

Comments
 (0)