-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS_Task-7.html
More file actions
92 lines (90 loc) · 4.01 KB
/
CSS_Task-7.html
File metadata and controls
92 lines (90 loc) · 4.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS_TASK-7</title>
<style>
.outter{
margin-top: 5%;
width: 800px;
height: 430px;
background-color: rgba(165, 10, 77, 0.977);
padding-top: 30px;
padding-bottom: 30px;
}
.inner{
width: 500px;
height: 430px;
background-color: rgb(116, 5, 49);
}
.inner-table{
padding: 25px 0px;
}
tr > td{
border-bottom: 15px solid rgb(116, 5, 49);
}
tr > td > label{
color: white;
font-size: medium;
font-family: sans-serif;
}
</style>
</head>
<body>
<center>
<div class="outter">
<form action="#" class="inner">
<table class="inner-table" border="0px" cellpadding="0px">
<tr>
<td><label for="name">Name:</label></td>
<td><input type="text" name="name" id="name" placeholder="your name" style="height: 20px; width: 170px;"></td>
</tr>
<tr>
<td><label for="email">Email:</label></td>
<td><input type="email" name="email" id="email" placeholder="your email" style="height: 20px; width: 170px;"></td>
</tr>
<tr>
<td><label for="password">Password:</label></td>
<td><input type="password" name="password" id="password" style=" height: 20px; width: 170px;"></td>
</tr>
<tr>
<td><label for="phoneno">Phone Number:</label></td>
<td><input type="number" name="phoneno" id="phoneno" style=" height: 20px; width: 170px;"></td>
</tr>
<tr>
<td><label for="gender">Gender:</label></td>
<td>
<label for="male">Male:</label><input type="radio" name="gender" id="male">
<label for="female">Female:</label><input type="radio" name="gender" id="female">
<label for="other">Other:</label><input type="radio" name="gender" id="other">
</td>
</tr>
<tr>
<td><label for="language">language:</label></td>
<td>
<select name="language" id="language" style="height: 30px; width: 130px;">
<option value="">Select language</option>
<option value="kannada">Kannada</option>
<option value="english">English</option>
<option value="hindi">Hindi</option>
<option value="tamil">Tamil</option>
<option value="telugu">Telugu</option>
</select>
</td>
</tr>
<tr>
<td><label for="zipcode">Zip Code:</label></td>
<td><input type="number" name="zipcode" id="zipcode" style="height: 20px; width: 170px;"></td>
</tr>
<tr>
<td><label for="about">About:</label></td>
<td><textarea name="about" id="about" cols="21" rows="2" placeholder="Write about yourself..."></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Register" style="width:100%; padding: 5px; height: 10%; border-radius: 5px; font-size: large; font-weight: bold; border-color:white; "></td>
</tr>
</table>
</form>
</div>
</center>
</body>
</html>