-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTables.html
58 lines (57 loc) · 1.37 KB
/
Tables.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= , initial-scale=1.0">
<meta name="description" content="this table showing about country information">
<title>Table</title>
<style>
table{
width:100%;
border-collaps:collapse;
text-align: center;
}
td,th {
border : 5px solid black ;
padding : 10px
}
tr{
background-color : #543432 ;
color : #fff ;
}
body{
background-color: rgb(118, 118, 185);
}
</style>
</head>
<body>
<table>
<tr>
<th colspan="">country</th>
<th>country code</th>
<th>Email</th>
</tr>
<tr>
<td>India</td>
<td>IN</td>
<td>[email protected]</td>
</tr>
</table>
<table> <tr>
<td>United States</td>
<td>US</td>
<td>[email protected]</td>
</table>
<table> <tr>
<td>japan</td>
<td>JP</td>
<td>[email protected]</td>
</table> </tr>
<table> <tr>
<td>China</td>
<td>CN</td>
<td>[email protected]</td>
</table> </tr>
</table>
</body>
</html>