1<html>
2<head>
3<title>
4</title>
5
6<style>
7table
8{
9color:white;
10border-radius:20px;
11}
12
13#button
14{
15background-color:green;
16color:white;
17height:32px;
18width:85px;
19border-radius:25px;
20}
21
22body
23{
24background:linear-gradient(red,blue);
25}
26</style>
27
28
29
30
31
32</head>
33
34<body>
35<br><br><br><br><br><br><br>
36
37<form>
38
39<table border="0" bgcolor="black" align="center" cellspacing="20">
40<tr>
41<td>First Name</td>
42<td><input type="text" placeholder="First Name" required value = "" maxlength = "10"></td>
43
44</tr>
45
46<tr>
47<td>Last Name</td>
48<td><input type="text" placeholder="Last Name" required value = "" maxlength = "10"></td>
49</tr>
50
51<tr>
52<td>Email Address</td>
53<td><input type="text" placeholder="Email Address" required value = "" maxlength = "27"></td>
54</tr>
55
56<tr>
57<td>Password</td>
58<td><input type="password" placeholder="Password" required value = "" maxlength = "14"></td>
59</tr>
60
61<tr>
62<td>Confirm Password</td>
63<td><input type="password" placeholder="Confirm password" required value = "" maxlength = "14"></td>
64</tr>
65
66<tr>
67<td>Gender</td>
68<td>
69<input type="radio" name="r1" required>Male
70<input type="radio" name="r1" required>Female
71</td>
72</tr>
73
74<tr>
75<td colspan="2" align="center"><a href ="login.html"><input type="submit" id="button"></a></td>
76</tr>
77
78
79</form>
80
81</table>
82</body>
83</html>