-
Notifications
You must be signed in to change notification settings - Fork 33
/
IPLteams.html
105 lines (105 loc) · 3.86 KB
/
IPLteams.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>IPL Teams</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
font-size: 32px;
text-align: center;
margin-top: 20px;
margin-bottom: 40px;
text-transform: uppercase;
letter-spacing: 2px;
}
table {
width: 80%;
margin: 0 auto;
border-collapse: collapse;
border: 1px solid #ddd;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
text-transform: uppercase;
letter-spacing: 2px;
}
td:first-child {
font-weight: bold;
}
td:nth-child(2) {
cursor: pointer;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<h1>IPL TEAMS</h1>
<table>
<thead>
<tr>
<th>Serial Number</th>
<th>Team Name</th>
<th>Team Logo</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Chennai_Super_Kings')">Chennai Super Kings</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/2/2b/Chennai_Super_Kings_Logo.svg/220px-Chennai_Super_Kings_Logo.svg.png" alt="Chennai Super Kings logo"></td>
</tr>
<tr>
<td>2</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Delhi_Capitals')">Delhi Capitals</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/f/f5/Delhi_Capitals_Logo.svg/300px-Delhi_Capitals_Logo.svg.png" alt="Delhi Capitals logo"></td>
</tr>
<tr>
<td>3</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Gujarat_Titans')">Gujarat Titans</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/0/09/Gujarat_Titans_Logo.svg/300px-Gujarat_Titans_Logo.svg.png" alt="Gujarat Titans logo"></td>
</tr>
<tr>
<td>4</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Kings_XI_Punjab')">Kings XI Punjab</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/d/d4/Punjab_Kings_Logo.svg/248px-Punjab_Kings_Logo.svg.png" alt="Kings XI Punjab logo"></td>
</tr>
<tr>
<td>5</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Kolkata_Knight_Riders')">Kolkata Knight Riders</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/4/4c/Kolkata_Knight_Riders_Logo.svg/263px-Kolkata_Knight_Riders_Logo.svg.png" alt="Kolkata Knight Riders logo"></td>
</tr>
<tr>
<td>6</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Lucknow_Super_Giants')">Lucknow Super Giants</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/e/e2/Lucknow_Super_Giants_logo.png/300px-Lucknow_Super_Giants_logo.png" alt="Lucknow Super Giants"></td>
</tr>
<tr>
<td>7</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Mumbai_Indians')">Mumbai Indians</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/c/cd/Mumbai_Indians_Logo.svg/300px-Mumbai_Indians_Logo.svg.png"alt="Mumbai Indians logo"></td>
</tr>
<tr>
<td>8</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Royal_Challengers_Bangalore')">Royal Challengers Bangalore</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/2/2a/Royal_Challengers_Bangalore_2020.svg/300px-Royal_Challengers_Bangalore_2020.svg.png"alt="Royal Challengers Bangalore logo"></td>
</tr>
<tr>
<td>9</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Rajasthan_Royals')">Rajasthan Royals</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/6/60/Rajasthan_Royals_Logo.svg/300px-Rajasthan_Royals_Logo.svg.png"alt="Rajasthan Royals logo"></td>
</tr>
<tr>
<td>10</td>
<td onclick="window.open('https://en.wikipedia.org/wiki/Sunrisers_Hyderabad')">Sunrisers Hyderabad</td>
<td><img src="https://upload.wikimedia.org/wikipedia/en/thumb/e/eb/Sunrisers_Hyderabad.png/300px-Sunrisers_Hyderabad.png"alt="Sunrisers Hyderabad logo"></td>
</tr>