-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
55 lines (48 loc) · 1.65 KB
/
form.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>registration form</title>
<style>
.silver-background{
background-color:silver;
}
</style>
</head>
<body>
<div class="login-page">
<div class="form silver-background">
<form class="register-form">
<fieldset>
<input type="text" placeholder="username" ></br></br>
<input type="text" placeholder="password"></br></br>
<input type="text" placeholder="email id"></br></br>
<textarea rows"20" cols"10"></textarea></br></br>
yes:
<input type="radio" name="yesorno" value="female"> female</br></br>
no:
<input type="radio" name="yesorno" value="male">male</br></br>
<p> your state of origin:</p>
<select>
<option value="Abia state">abia state</option>
<option value="Anambra state"> Anambra state</option>
<option value="Akwa ibom state">Akwa ibom state</option>
<option value="Lagos state"> Lagos state</option>
<option value="Bayelsa state">Bayelsa state</option>
<option value="Ebonyi state"> Ebonyi state</option>
<option value="Ekiti state">Ekiti state</option>
<option value="Rivers state"> Lagos state</option>
</select></br>
enter your date of birth:
<input type="date" name="day"></br></br>
number of years you will spend:
<input type="number" name=""min="1" max="30"></br>
<button> create</button>
</fieldset>
</form>
</div>
</div>
</body>
</html>