-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
62 lines (55 loc) · 2.12 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
56
57
58
59
60
61
62
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=devide-width, initial-scale=1.0">
<link rel ="stylesheet" type="text/css" href="form.css">
<title>Form</title>
</head>
<body>
<div class="box">
<form action="">
<fieldset>
<legend><b>Sample Register Form</b></legend>
<br />
<div class="inputbox">
<input type="text" name="name" id="name" class="inputuser" required>
<label for="name" class="inputlabel">Full Name</label>
</div><br />
<div class="inputbox">
<input type="text" name="email" id="email" class="inputuser" required>
<label for="email" class="inputlabel">Email</label>
</div><br />
<div class="inputbox">
<input type="tel" name="phone" id="phone" class="inputuser" required>
<label for="phone" class="inputlabel">Phone Number</label>
</div><br />
<p>Sexo:</p>
<input type="radio" name="gender" id="female" value="female" required>
<label for="female">Female</label><br />
<input type="radio" name="gender" id="male" value="male" required>
<label for="male">Male</label><br />
<input type="radio" name="gender" id="other" value="other" required>
<label for="other">Other</label><br /><br />
<label for="date"><b>Date of Birth:</b></label>
<input type="date" name="date" id="date_of_birth" required>
<br /><br />
<div class="inputbox">
<input type="text" name="city" id="city" class="inputuser" required>
<label for="city" class="inputlabel">City</label>
</div><br />
<div class="inputbox">
<input type="text" name="state" id="state" class="inputuser" required>
<label for="state" class="inputlabel">State</label>
</div><br />
<div class="inputbox">
<input type="text" name="address" id="address" class="inputuser" required>
<label for="address" class="inputlabel">Address</label>
</div><br />
<input type="submit" name="submit" id="submit">
</fieldset>
</form>
</div>
</body>
</html>