forked from niranjan-official/ipl-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (100 loc) · 3.45 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
<!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>
<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>
</div>
<div
class="col-12 col-md-6 d-flex flex-column align-items-center p-4 teams"
>
<h2>Teams</h2>
<div class="team-col mt-5">
<a
href="mi/mi.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Mumbai Indians</span>
</a>
<a
href="csk/csk.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Chennai Super Kings</span>
</a>
<a
href="rcb/rcb.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Royal Challengers</span>
</a>
<a
href="rr/rr.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Rajasthan Royals</span>
</a>
<a
href="dc/dc.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Delhi Capitals</span>
</a>
<a
href="kkr/kkr.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Kolkata Knight Riders</span>
</a>
<a
href="pbks/pbks.html"
class="d-flex justify-content-center bg-danger px-5 py-2 team-each"
>
<span>Kings XI Punjab</span>
</a>
</div>
</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>