-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample-7.html
90 lines (52 loc) · 2.69 KB
/
Example-7.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
87
88
89
90
<! Step 1: Create a table header>
<! Step 2: Create Rows>
<! Step 3: Create links>
<! Step 4: Use HTML entities>
<html>
<head>
<title>Table</title>
</head>
<body>
<table>
<thead>
<tr>
<th>League Name</th>
<th>Winner</th>
</tr>
</thead>
<tbody>
<tr>
<td>EPL</td>
<td>Liverpool</td>
</tr>
<tr>
<td>LA Liga</td>
<td>Real Madrid</td>
</tr>
<tr>
<td>League 1</td>
<td>PSG</td>
</tr>
<tr>
<td>Bundesliga</td>
<td>Bayern Munich</td>
</tr>
</tbody>
</table>
<p id="Below-Table"><a href="https://www.goal.com/en-in">Click here for more updates!</a></p>
<p>Read More about Champions League</p>
<p><a href="https://en.wikipedia.org/wiki/UEFA_Champions_League"><img src="https://upload.wikimedia.org/wikipedia/en/thumb/b/bf/UEFA_Champions_League_logo_2.svg/800px-UEFA_Champions_League_logo_2.svg.png" width="200"></a></p>
<p><a href="Example-5.html">How to add image in HTML page</a></p>
<p><strong>More Clubs to follow</strong></p>
<p><a href="https://en.wikipedia.org/wiki/Liverpool_F.C."><img src="https://upload.wikimedia.org/wikipedia/en/thumb/0/0c/Liverpool_FC.svg/180px-Liverpool_FC.svg.png" width="200"></a></p>
<p><a href="https://en.wikipedia.org/wiki/FC_Bayern_Munich"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/FC_Bayern_M%C3%BCnchen_logo_%282017%29.svg/180px-FC_Bayern_M%C3%BCnchen_logo_%282017%29.svg.png" width="200"></a></p>
<p><strong>Coutinho transfer fee:</strong></p>
<ul>
<li>£94.8 million</li>
<li>¥131.3 million</li>
<li>€105 million</li>
</ul>
<iframe width="560" height="315" src="https://www.youtube.com/embed/3R2FR34qJxc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p><a href="#Below-Table">Back to Top</a></p>
</body>
</html>