-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
124 lines (124 loc) · 4.14 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rowdies:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<title>IPL-2024</title>
</head>
<body>
<div class="min-vh-100 w-100 d-flex flex-column col-12 flex-md-row main">
<div
class="min-vh-100 col-12 col-md-6 d-flex flex-column justify-content-center align-items-center text-center title-div"
>
<img class="ipl-logo" src="./assets/ipl-logo.png" alt="" />
<h1 class="title font-italic">IPL 2024</h1>
<span class="title-date">MARCH 23, 2024 - MAY 29, 2024</span>
<a style="text-decoration: none;color: #eee;" href="#teams">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="down-arrow"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="m4.5 5.25 7.5 7.5 7.5-7.5m-15 6 7.5 7.5 7.5-7.5"
/>
</svg>
</a>
</div>
<section
class="col-12 col-md-6 d-flex flex-column align-items-center p-4 teams"
id="teams"
>
<h2>Teams</h2>
<div class="team-col mt-3">
<a
href="mi/mi.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/mi.png" alt="">
<div class="teamname">
<span>Mumbai Indians</span>
</div>
</a>
<a
href="csk/csk.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/csk.png" alt="">
<div class="teamname">
<span>Chennai Super Kings</span>
</div>
</a>
<a
href="rcb/rcb.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/rcb.png" alt="">
<div class="teamname">
<span>Royal Challengers</span>
</div>
</a>
<a
href="rr/royals.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/rr.png" alt="">
<div class="teamname">
<span>Rajasthan Royals</span>
</div>
</a>
<a
href="dc/dc.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/dc.png" alt="">
<div class="teamname">
<span>Delhi Capitals</span>
</div>
</a>
<a
href="kkr/kkr.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/kkr.png" alt="">
<div class="teamname">
<span>Kolkata Knight Riders</span>
</div>
</a>
<a
href="pbks/pbks.html"
class="d-flex align-items-center p-3 team-each"
>
<img src="assets/teams/kxip.png" alt="">
<div class="teamname">
<span>Kings XI Punjab</span>
</div>
</a>
</section>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>