-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
86 lines (79 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Table</title>
</head>
<body style="background-image: url('https://media.istockphoto.com/photos/brick-wall-is-an-interesting-background-picture-id873947314');">
<h1>Student Details</h1>
<table border="20">
<tr>
<th>Profile Picture</th>
<th>Name</th>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr>
<td>
<img src="https://images.pexels.com/photos/220453/pexels-photo-220453.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500" width="50px" height="50px">
</td>
<td>Peter</td>
<td>Math</td>
<td>80%</td>
</tr>
<tr>
<td>
<img src="https://www.rd.com/wp-content/uploads/2017/09/01-shutterstock_476340928-Irina-Bg.jpg" height="50px" width="50px">
</td>
<td>Jane</td>
<td>Science</td>
<td>82%</td>
</tr>
<tr>
<td>Bob</td>
<td>GHC</td>
<td>78%</td>
</tr>
<tr>
<td>Alice</td>
<td>Art and Craft</td>
<td>71%</td>
</tr>
</table>
<h2>E.A Countries with their Capital</h2>
<table border="5" style="background-color: #9CD1F5; width: 100%;">
<tr>
<th>Country</th>
<th>Capital City</th>
</tr>
<tr>
<td>
<img src="https://www.mapsofworld.com/kenya/maps/kenya-political-map.jpg" width="100px">
</td>
<td>Kenya</td>
<td>Nairobi</td>
</tr>
<tr>
<td>Uganda</td>
<td>Kampala</td>
</tr>
<tr>
<td>Tanzania</td>
<td>Dodoma</td>
</tr>
</table>
<hr>
<table>
<tr>
<td>
<h1>Higher Taxes , Job cut</h1>
<p>
The Lender Monday announced ...Lorem ipsum is placeholder text commonly used in the graphic
</p>
</td>
<td>
<img src="https://nation.africa/resource/image/3276626/landscape_ratio3x2/1200/800/d55f991fccf06ddb848d07517f89ceb5/zC/ukur-yatani.jpg" width="40%">
</td>
</tr>
</table>
</body>
</html>