-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (75 loc) · 2.9 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to Create Form in HTML and CSS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrap">
<h1>Create Your Account</h1>
<form class="frm">
<table>
<tr>
<td>
<label>Enter Name:</label>
</td>
<td>
<input type="text" name="fullname" class="txt" required>
</td>
</tr>
<tr>
<td>
<label>Enter Email ID:</label>
</td>
<td>
<input type="text" name="email" class="txt" required>
</td>
</tr>
<tr>
<td>
<label>Enter Username:</label>
</td>
<td>
<input type="text" name="username" class="txt" required>
</td>
</tr>
<tr>
<td>
<label>Enter Password:</label>
</td>
<td>
<input type="password" name="password" class="txt" required>
</td>
</tr>
<tr>
<td>
<label>Confirm Your Password:</label>
</td>
<td>
<input type="password" name="cpassword" class="txt" required>
</td>
</tr>
<tr>
<td>
<label>Gender:</label>
</td>
<td>
<input type="radio" name="gender" value="male" required><span>Male</span>
<input type="radio" name="gender" value="female" required><span>Female</span>
</td>
</tr>
<tr>
<td>
</td>
<td>
<input type="submit" name="create" value="Create Account" class="btn">
<input type="reset" name="clear" value="Clear Form" class="btn">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>