-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10_Top 5 movies.html
More file actions
71 lines (65 loc) · 1.92 KB
/
10_Top 5 movies.html
File metadata and controls
71 lines (65 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top 5 Movies</title>
<style>
table{
width: 100%;
text-align: center;
background-color: black;
color: brown;
border-color: yellow;
font-size: 22px;
}
</style>
</head>
<body>
<table border="1">
<caption style="color: teal; font-size: 35px;">TOP 5 MOVIES</caption>
<tr>
<th>Sl no.</th>
<th>Movie Name</th>
<th>Movie Release Year</th>
<th>Hero</th>
<th>Poster</th>
</tr>
<tr>
<td>01</td>
<td>Jawan</td>
<td>2023</td>
<td>Shah Rukh Khan</td>
<td><img src="Images/Movies/Jawan Poster.jpg" height="100px" width="150px"></td>
</tr>
<tr>
<td>02</td>
<td>KGF 3</td>
<td>2023</td>
<td>Yash</td>
<td><img src="Images/Movies/KGF 3 Poster.avif" height="100px" width="150px"></td>
</tr>
<tr>
<td>03</td>
<td>Krrish 4</td>
<td>2023</td>
<td>Hrithik Roshan</td>
<td><img src="Images/Movies/Krrish-4 Poster.jpg" height="100px" width="150px"></td>
</tr>
<tr>
<td>04</td>
<td>Pathaan</td>
<td>2023</td>
<td>Shah Rukh Khan</td>
<td><img src="Images/Movies/Pathaan Poster.jpg" height="100px" width="150px"></td>
</tr>
<tr>
<td>05</td>
<td>Pushpa</td>
<td>2023</td>
<td>Allu Arjun</td>
<td><img src="Images/Movies/Pushpa Poster.jpg" height="100px" width="150"></td>
</tr>
</table>
</body>
</html>