-
Notifications
You must be signed in to change notification settings - Fork 11
/
contactus.html
100 lines (94 loc) · 2.05 KB
/
contactus.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>Contact us</title>
<style>
body
{
background: rgb(255, 111, 111);
}
h3
{
color: rgb(197, 255, 4);
font-weight: bolder;
font-size: 40px;
}
td
{
color: blueviolet;
font-weight: 20px;
font-weight: bolder;
}
input
{
border-radius: 20px;
box-shadow: 10px;
}
select
{
border-radius: 20px;
font-weight: 15px;
font-weight: bolder;
}
</style>
</head>
<body>
<center>
<form action="submit">
<h3>Sign Up!</h3>
<hr>
<table>
<tr>
<td>First Name</td>
<td><input type="text" name="Name" id="name"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="Name" id="name"></td>
</tr>
<tr>
<td>Gender</td>
<td><input type="radio" name="gen" id="gend">Male<input type="radio" name="gen" id="gend">Female</td>
</tr>
<tr>
<td>Country:</td>
<td><select name="Country">
<option value="0">Country</option>
<option value="1">Sri Lanka</option>
<option value="2">India</option>
<option value="3">Canada</option>
<option value="3">USA</option>
<option value="3">UK</option>
<option value="3">Russia</option>
<option value="3">China</option>
</select></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="email" id="mail"></td>
</tr>
<tr>
<td>Phone</td>
<td><input type="number" name="Num" id="numbr"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="pw" id="pw"></td>
</tr>
<tr>
<td>Confirm Password</td>
<td><input type="password" name="pw" id="pw"></td>
</tr>
<tr>
<td></td>
<td><input type="checkbox"> Agree to the Terms of User</td>
</tr>
<tr>
<td><input type="submit" value="Submit"> <input type="reset" value="Clear"></td>
</tr>
</table>
</form>
<hr>
</center>
</body>
</html>