-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtable.html
More file actions
81 lines (79 loc) · 1.99 KB
/
table.html
File metadata and controls
81 lines (79 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<style> table,th,tr,td
{border: 3.5px solid blueviolet;
border-collapse: collapse;}
</style>
<title>Tables</title>
</head>
<body>
<table>
<caption>Anime</caption>
<tr>
<th>S.no.</th>
<td>1.</td>
<td>2.</td>
<td>3.</td>
<td>4.</td>
<td>5.</td>
<td>6.</td>
</tr>
<tr>
<th>Name</th>
<td>DN</td>
<td>OPM</td>
<td>JJK</td>
<td>One Outs</td>
<td>NGNL</td>
<td>Redo of healer</td>
</tr>
<tr>
<th>Genre</th>
<td>Thriller</td>
<td>Comedy</td>
<td>Supernatural</td>
<td>Sports</td>
<td>fantasy</td>
<td>revenge</td>
</tr>
<tr>
<th>Imdb score</th>
<td>9.0</td>
<td>8.7</td>
<td>8.6</td>
<td>8.3</td>
<td>7.7</td>
<td>6.3</td>
</tr>
<tr>
<th>Year of Release</th>
<td>2003</td>
<td>2015</td>
<td>2019</td>
<td>2008</td>
<td>2017</td>
<td>2021</td>
</tr>
<tr>
<th>Poster</th>
<td><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTTvWFaJwg_TrVrBCF0rwjF3kXaMvFr41cuIh8ExiTz&s" height="180"</td>
<td>
<img src="https://cdn.europosters.eu/image/750/posters/one-punch-man-destruction-i61133.jpg" height="180">
</td>
<td>
<img src="https://cdn.europosters.eu/image/1300/posters/jujutsu-kaisen-i124050.jpg" height="180">
</td>
<td>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTe-alHbaFENsYf5TBYzWoQtl7EkD2UIML3cMD5KALP&s" height="180"
</td>
<td>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQwdcUby4EU7e2SxNgvA3LUNTk4AlaLX5cNjsBxCRJJ&s" height="180">
</td>
<td>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0e3Np57h_WSe_9O2mjp6FrfYLDA4exIrrALJ50lE8&s" height="180">
</td>
</tr>
</table>
</body>
</html>