|
1 | 1 | <!DOCTYPE html>
|
2 | 2 | <html>
|
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <title>gremlins</title> |
| 6 | + </head> |
3 | 7 |
|
4 |
| -<head> |
5 |
| - <meta charset="utf-8"> |
6 |
| - <title>gremlins</title> |
7 |
| -</head> |
| 8 | + <body> |
| 9 | + <input type="text" name="firstname" /> |
| 10 | + <input type="number" name="age" /> |
| 11 | + <input type="email" name="email" /> |
8 | 12 |
|
9 |
| -<body> |
10 |
| - <input type="text" name="firstname" /> |
11 |
| - <input type="number" name="age" /> |
12 |
| - <input type="email" name="email" /> |
13 |
| - |
14 |
| - <select name="gender"> |
15 |
| - <option value=""></option> |
16 |
| - <option value="other">Other</option> |
17 |
| - <option value="male">Male</option> |
18 |
| - <option value="female">Female</option> |
19 |
| - </select> |
20 |
| - |
21 |
| - <br /> |
22 |
| - <input type="radio" name="newsletter" value="0" />Yes |
23 |
| - <input type="radio" name="newsletter" value="1" />No |
24 |
| - <br /> |
25 |
| - <input type="radio" name="spam" value="0" />Yes |
26 |
| - <input type="radio" name="spam" value="1" />No |
27 |
| - <input type="radio" name="spam" value="2" />Maybe |
28 |
| - <br /> |
29 |
| -</body> |
| 13 | + <select name="gender"> |
| 14 | + <option value=""></option> |
| 15 | + <option value="other">Other</option> |
| 16 | + <option value="male">Male</option> |
| 17 | + <option value="female">Female</option> |
| 18 | + </select> |
30 | 19 |
|
| 20 | + <br /> |
| 21 | + <input type="radio" name="newsletter" value="0" />Yes <input type="radio" name="newsletter" value="1" />No |
| 22 | + <br /> |
| 23 | + <input type="radio" name="spam" value="0" />Yes <input type="radio" name="spam" value="1" />No |
| 24 | + <input type="radio" name="spam" value="2" />Maybe |
| 25 | + <br /> |
| 26 | + </body> |
31 | 27 | </html>
|
0 commit comments