-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
79 lines (76 loc) · 5.38 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>T20 - World Cup - 2022</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kalam&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
</head>
<body >
<section id="nav">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/logo.png" alt="Bootstrap" width="100" height="60">
</a>
<a class="navbar-brand" href="#">T20-WorldCup</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="team.html">Teams</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="venues.html">Venues</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<div>
<div><img src="images/left.jpg" alt="Bootstrap" width="480" height="750" align="right" style="padding: 10px;
margin: 55px 15px 15px 15px;">
</div>
<div><img src="images/right.jpg" alt="Bootstrap" width="480" height="750" align="left" style="padding: 10px;
margin: 55px 15px 15px 15px;">
</div>
<div style= "padding: 5px;font-family: robotoMono; font-size: larger; margin: 25px 500px 45px 500px;">
<h1 style="text-align: center; margin: 0px 0px 35px 0px;">T20 World Cup 2022</h1>
<p >The ICC Men's <b>T20 World Cup</b> in 2022 will be the eighth edition in the series. It will be held in <b>Australia</b> from <b>October 16 to November 13</b>.</p>
<ul>
<li>
The tournament was originally scheduled for late 2020 but postponed due to the COVID-19 pandemic. India staged the seventh edition in the United Arab Emirates (UAE) last year.</li>
<li >The 45 matches will be played in the cities of Geelong, Hobart, Perth, Brisbane, Adelaide, Sydney and Melbourne. The semi-finals take place at Sydney Cricket Ground and Adelaide Oval with the final at Melbourne Cricket Ground.</li>
<li > Hosts Australia are the reigning champions after beating New Zealand in the final in Dubai last year to win their first title.</li>
<li >West Indies (2012, 2016) have won the title twice, while India (2007), Pakistan (2009), England (2010) and Sri Lanka (2014) are the other teams to have won it once.</li>
<li >Despite being former champions, West Indies and Sri Lanka will play in the opening qualifying stage. Eight teams have been split into two groups with the top two from each progressing to the Super 12.</li>
<p ><b>Group A:</b>Namibia, Netherlands, Sri Lanka, UAE</p>
<p ><b>Group B:</b>Ireland, Scotland, West Indies, Zimbabwe</p>
<p >* The Super 12 will also be played as a round robin with two groups of six. The top two from each go through to the semi-finals.</p>
<p ><b>Group 1:</b>Afghanistan, Australia, England, New Zealand, winner Group A, runner-up Group B.</p>
<p ><b>Group 2:</b>Bangladesh, India, Pakistan, South Africa, winner Group B, runner-up Group A.</p>
<li >Teams will get two points for a win and one point if a match is unable to be played or is abandoned. Ties in the group standings in both stages will be decided by net run rate.</li>
<li >In the event of scores being tied at the end of 40 overs, super overs will be played until there is a winner.</li>
<li >New laws in place for this edition of the World Cup include the permanent ban on the use of saliva to polish the ball and the 'Mankad' being allowed as a method to run out a batsman.</li>
<li >The winning nation will take home $1.6 million.</li>
</ul>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
</body>
</html>