-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtable.html
More file actions
52 lines (37 loc) · 830 Bytes
/
table.html
File metadata and controls
52 lines (37 loc) · 830 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Table Example</title>
<style>
table,th,tr,td{
border: 2px solid red;
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<th style="width:50%">Student Name</th>
<th>Student Course</th>
<th>Student Fees</th>
</tr>
<tr style="height: 200px;">
<td>Steve J</td>
<td>AWP</td>
<td>50000</td>
</tr>
<tr>
<td>Demo User</td>
<td>Web Development</td>
<td>30000</td>
</tr>
<tr>
<td>Alpha User</td>
<td>Machine Learning</td>
<td>75000</td>
</tr>
</table>
</body>
</html>
<!---->