-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
50 lines (47 loc) · 1.05 KB
/
table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>table</title>
<style>
table,td,th{
width: 100vh;
border-collapse: collapse;
border: 3px solid black;
}
td{
font-family: 'Times New Roman', Times, serif;
text-transform: capitalize;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>name</th>
<th>class</th>
<th>roll no.</th>
</tr>
</thead>
<tbody>
<tr>
<td>avinash</td>
<td>bca</td>
<td>34</td>
</tr>
<tr>
<td>soni</td>
<td>b.tech</td>
<td>75</td>
</tr>
<tr>
<td>nishnat</td>
<td>bca</td>
<td>59</td>
</tr>
</tbody>
</table>
</body>
</html>