-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGurgaon_Gladiators.html
60 lines (60 loc) · 1.32 KB
/
Gurgaon_Gladiators.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
<!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>Gurgaon Gladiators</title>
<style>
h1 {color:goldenrod }
h2 {color: silver }
h3 {color: silver }
h4 {color: yellow }
ul {color: goldenrod }
.background{
background-image: url(Gurgaon.jpg);
background-position: center;
background-size: 100pc;
}
</style>
</head>
<body>
<div class="background">
<nav>
<h1>Gurgaon Gladiators</h1>
<hr>
<h2>Owner- Mr. Korak Sengupta</h2>
<hr>
<h3>Squad</h3>
<h4>Batsmen</h4>
<ul>
<li>V.Kohli</li>
<li>K.L Rahul</li>
<li>S.Iyer</li>
<li>Md.Azharuddin</li>
<li>E.Morgan</li>
</ul>
<h4>All-Rounders</h4>
<ul>
<li>A.Russell</li>
<li>G.Maxwell</li>
<li>R.Jadeja</li>
<li>S.Mavi</li>
<li>A.Sharma</li>
</ul>
<h4>Bowlers</h4>
<ul>
<li>Md.Shami</li>
<li>P.Cummins</li>
<li>J.Archer</li>
<li>K.Tyagi</li>
<li>S.Sharma</li>
<li>V.Chakravarty</li>
<li>R.Khan</li>
<li>N.Saini</li>
<li>Y.Chahal</li>
</ul>
</div>
</nav>
</body>
</html>