-
Notifications
You must be signed in to change notification settings - Fork 0
/
fifth.html
62 lines (55 loc) · 1.99 KB
/
fifth.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
<!DOCTYPE html>
<html>
<head>
<title>My group</title>
</head>
<body>
<h1 style="text-align: center; color: white; background-color: gray;">Table</h1>
<table style="text-align: center;" border= "5px" cellspacing="0" cellpadding="10px">
<thead>
<tr>
<th>Name</th>
<th>Subject</th>
<th>City</th>
<th>Marks</th>
</tr>
</thead>
<tbody>
<tr>
<td>K.Abhiram</td>
<td>Science</td>
<td>Palamaner</td>
<td>50</td>
</tr>
<tr>
<td>K.Ajay</td>
<td>Maths</td>
<td>Mumbai</td>
<td>26</td>
</tr>
<tr>
<td>K.Suresh</td>
<td>Commerce</td>
<td>Delhi</td>
<td>23</td>
</tr>
</tbody>
</table>
<h1 style="text-align: center; color: white; background-color: gray;">Forms</h1>
<form >
1. Enter your Name :
<input type="text" placeholder="Enter Name"/>
<br>2. Date of Birth :
<input type="date" />
<br>3. Enter your City :
<input type="text" placeholder="Your city"/>
<br><input type="range" min="1" max="10"/>
<br>4. Gender :
<br><input type="radio"/> Male
<input type="radio"/> Female
<br><input type="checkbox"/> I agree
</form>
<button style="background-color: rgb(42, 153, 190); font-size: larger; color: white;">Submit</button>
<h1 style="text-align: center; color: white; background-color: gray;">You have submitted the lines</h1>
</body>
</html>