-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
60 lines (56 loc) · 1.89 KB
/
about.html
File metadata and controls
60 lines (56 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FORM</title>
</head>
<body>
<h1><b> REGISTRATION FORM</b></h1>
<form>
<table>
<tr>
<td>
Name :
</td>
<td>
<input type="text" placeholder="Name" name="">
</td>
</tr>
<tr>
<td>
<tr>
<td>
Email :
</td>
<td>
<input type="email" placeholder="example1@*8" name="">
</td>
</tr>
<tr>
<td>
Password :
</td>
<td>
<input type="password" placeholder="8 digit Password " maxlength="8">
</td>
</tr>
<tr>
<td>
Gender :
</td>
<td>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female
</td>
</tr>
<tr>
<td>
<a href="./contact.html" align-item="center"><button>Register</a></button>
<a href="./index.html" align-item="center"><button>back</a></button>
</td>
</tr>
</table>
</form>
</body>
</html>