-
Notifications
You must be signed in to change notification settings - Fork 0
/
html css task.html
126 lines (119 loc) · 2.77 KB
/
html css task.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body{
background-color: #DAA520;
}
p{
color: #4B0082;
}
h1,h2,h3{
color:#191970 ;
}
th{
background-color: #B0C4DE;
color: #1E90FF;
font-size:20px;
}
#head{
font-size: 35px;
}
td{
color:#800000;
}
input{
color: #FF1493;
}
img{
width: 30px;
height: 30px;
}
.link{
background-color: white;
}
</style>
<meta charset="utf-8">
<title>Registration</title>
</head>
<body >
<br><br><br>
<form>
<table class="pranveer" border="4" bgcolor="#FFE4E1" align="center">
<tr>
<th id="head" colspan="4"><marquee>Workshop Registration</marquee></th>
</tr>
<tr><tr><td>Title</td>
<td><select>
<option selected="selescted" disabled="disabled">Title</option>
<option>Mr.</option>
<option>Mrs.</option>
</select></td></tr>
<td>First</td>
<td><input type="text" name=""></td></tr>
<tr>
<td>Middle</td>
<td><input type="text" name=""></td></tr>
<tr>
<td>Last</td>
<td><input type="text" name=""></td>
</tr>
<tr>
</tr>
<tr>
<td colspan="2">Address</td>
</tr>
<tr>
<td colspan="2"><textarea rows="1" cols="67"></textarea></td>
</tr>
<tr>
<td>Email</td>
<td >Contact Detail</td>
</tr>
<tr>
<td><input type="email" name=""></td>
<td><input type="number" name=""></td>
</tr>
<tr>
<td>Gender</td>
<td><input type="radio" name="gender">Male
<input type="radio" name="gender">Female
<input type="radio" name="gender">Transgender</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>Select ur Hobbies</td>
<td><input type="checkbox" name="">Playing Cricket
<input type="checkbox" name="">Reading Books
<input type="checkbox" name="">Gardening</td>
</tr>
<tr>
<td>Select ur DOB</td>
<td><input type="date" name=""></td>
</tr>
<tr><th><input type="Submit" value="submit" name=""> <input type="reset" value="Reset" name=""></th>
<th><p><marquee behavior="alternate"><b><i>all rights are Reserved ©</marquee></i></p></th>
</tr>
<tr>
<th class="link" colspan="2">Or Signup with more sites
<a href="http:\\www.twitter.com" title="twitter" target="_blank"><img src="tt.jpg"></a>
<a href="http:\\www.linkedin.com" title="linkedin" target="_blank"><img src="li.png"></a>
<a href="http:\\www.facebook.com" title="facebook" target="_blank"><img src="fb.png"></a>
<a href="http:\\www.instagram.com" title="instagram" target="_blank"><img src="ig.jpg"></a>
</th>
</tr>
</table>
</form>
<h1>About</h1>
<p>The Anual Sci-Fi Event is Welcome to all of You</p>
<h2>Last date for Submission</h2>
<p>Monday, October 11th,2021 @ 04.00 PM Local Time</p>
<h3>Address</h3>
<p>B-3, 404</p>
<p>Eastern Heights,</p>
<p>Indirapuram (Near Aditya Mall)</p>
<p>Ghaziabad-201011</p>
</body>
</html>