-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormProject2.html
53 lines (50 loc) · 1.9 KB
/
FormProject2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Registration Form</title>
</head>
<body>
<br><br><br><br>
<table border="2px" bgcolor="#FFEFD5" align="center">
<form>
<th bgcolor="#90EE90"><font size="+2" color="#000080">Registration Form</font></th>
<tr>
<th align="left" bgcolor="#E6E6FA"><font color="#4B0082">*First Name </font></th>
<tr><td><input type="text" placeholder="First Name" title="Enter First Name" name="" required=""></td></tr>
</tr>
<tr>
<th align="left" bgcolor="#FFB6C1"><font color="#800000">*Last Name </font></th>
<tr><td><input type="text" placeholder="Last Name" title="Enter Last Name" name="" required=""></td></tr>
</tr>
<tr>
<th align="left" bgcolor="#FFF0F5"><font color="#800080">*E-mail</font></th>
<tr><td><input type="email" name="" required=""></td></tr>
</tr>
<tr>
<th align="left">*Password</th>
<tr><td><input type="Password" name="" pattern="[0-9] {>6}" required=""></td></tr>
</tr>
<tr>
<td align="center" bgcolor="#FDF5E6"><input type="submit" value="Join Us" name="" ></td>
</tr>
<tr>
<td> ----------------OR---------------</td>
</tr>
<tr>
<th bgcolor="#FFFFFF"><a href="http://www.facebook.com" target="_blank" title="facebook"><font color="#C71585" size="+2"><img src="fb.png" height="20px" width="20px">Join us with Fb</font></a></th>
</tr>
<tr>
<th bgcolor="#E0FFFF"><font color="#FF1493">or also Join with Us</font></th>
</tr>
<tr>
<td bgcolor="#FFFFFF" align="center">
<a href="http://instagram.com" title="Instagram" target="_blank"><img src="insta.jpg" height="30" width="30"></a>
<a href="http://twitter.com" title="twitter" target="_blank"><img src="Twitter.jpg"height="30" width="30">
<a href="http://linkedin.com" title="linkedin" target="_blank"><img src="linkedin.png"height="30" width="30">
</td>
</tr>
</form>
</table>
</body>
</html>