-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
68 lines (64 loc) · 1.58 KB
/
table.html
File metadata and controls
68 lines (64 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<title>table</title>
<style>
*{
padding: 0px; ;
margin:0px;
background-color: lightcoral;
}
td,th
{
align:left;
background-color: green;
color:white;
margin: 10px;
padding: 10px;
}
table
{
background-color: blue;
padding:0px;
margin:0px;
align:center;
}
p
{
background-color: lightseagreen;
}
</style>
</head>
<body>
<div>
<table border="5">
<caption><font color="black" size="4" ><b> High Score Details </b></font></caption>
<tr>
<th colspan="2">Sr. No. & Name </th>
<th>High Score</th>
<th> Game</th>
</tr>
<tr>
<td>1</td>
<td>NARESH</td>
<td>235</td>
<td>vollyball</td>
</tr>
<tr>
<td>2</td>
<td>KAILASH CHANDRA</td>
<td>165</td>
<td>Cricket </td>
</tr>
</table>
</div>
<div>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Et neque a magnam fuga amet blanditiis odit id beatae delectus voluptas!
</p>
</div>
</body>
</html>