-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration
More file actions
36 lines (33 loc) · 1.15 KB
/
Registration
File metadata and controls
36 lines (33 loc) · 1.15 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Register yourself!</title>
<title>CSS</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form><ul>
<li><strong>First name</strong>:<input type="text" name="firstname"></li><br>
<li><em>Last name:</em><input type="text" name="lastname"></li><br>
<li>Your Email:<input type="email" name="Email"></li><br>
<li>Birthdate:<input type="date" name="Birthday"></li><br>
<li> Personal number:<input type="text" name="personalnumber"></li><br>
<li>Password: <input type="password" min="5" name="password"></li><br>
Gender:<br>
<input type="radio" name="gender" value="Female">Female<br>
<input type="radio" name="gender" value="Male">Male<br>
<input type="radio" name="gender"value="Don't know">Don't know<br>
Pets:<br>
<input type="checkbox" name="Dogs" value="Dogs">Dogs<br>
<input type="checkbox" name="Cats" value="Cats">Cats<br>
Cars:<br>
<select value="cars">
<option value="volvo" name="Volvo">Volvo</option>
<option value="BMW" name="BMW">BMW</option>
</select><br>
<input type=submit value="Register">
<input type="reset" value="Oups">
</ul>
</form>
</body>
</html>