-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (98 loc) · 1.88 KB
/
index.html
File metadata and controls
142 lines (98 loc) · 1.88 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<title>Habib</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
background-color: chocolate;
}
.Card{
height: 480px;
width: 400px;
background-color: grey;
margin: 50px auto;
border: 2px solid grey;
border-radius: 3px;
box-shadow: 1px 1px 6px black;
}
table{
margin: 20px auto;
position: relative;
top: 40px;
}
td{
font-weight: bold;
}
</style>
</head>
<body>
<div class="Card">
<form>
<table align="center">
<caption><h1 style="color:brown;">Note Application<h1></caption>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>Name:<input type="text" name="" id="name"></td>
</tr>
<tr>
<td>Age:<input type="number" name="" id="age"></td>
</tr>
<tr>
<td>Educational Skills: </td>
</tr>
<tr>
<td><input type="checkbox" name="Check" id="Check">I.s.c
<input type="checkbox" name="Check" id="Check">B.s.c
<input type="checkbox" name="Check" id="Check">C.s.e
<input type="checkbox" name="Check" id="Check">M.s.c
</td>
</tr>
<tr>
<td>Gender: </td>
</tr>
<tr>
<td>
Male:<input type="radio" name="gen" id="Check">
Female:<input type="radio" name="gen" id="Check">
</td>
</tr>
<tr>
<td>Department:<select>
<option>Select One...</option>
<option>English</option>
<option>Bangla</option>
<option>Arabic</option>
<option>Hindi</option>
<option>Banking</option>
<option>Philosophy</option>
</select>
</td>
</tr>
<tr>
<td>Select Your Note:</td>
</tr>
<tr>
<td>
<textarea cols="32" rows="8" selectionDirection=""></textarea>
<td>
</tr>
<tr>
<td>
<input type="submit" name="" value="Submit">
<input type="reset" name="" value="Reset">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>