forked from Shailender9207/myfirstwebpage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathm.html
92 lines (83 loc) · 3.56 KB
/
m.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="css\bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css\bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Hello, world!</title>
</head>
<body>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container">
<div class="carousel-caption text-left">
<p> THIS IS FIRST SLIDE</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="carousel-caption">
<p>THIS IS SECOND SLIDE</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="carousel-caption text-right">
<p>THis is third slide</p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="jumbotron">
<div class="container cg" color: blue>
<h1> GAMES</h1>
<p> A game is a structured form of play, usually undertaken for enjoyment and sometimes used as an educational tool. Games are distinct from work, which is usually carried out for remuneration, and from art, which is more often an expression of aesthetic or ideological elements </p>
<p>
<button type="button" class="btn btn-info">CLICK HERE>></button>
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>CRICKET</h2>
<p>Cricket is a bat-and-ball game played between two teams of eleven players on a field at the centre of which is a 20-metre pitch with a wicket at each end, each comprising two bails balanced on three stumps
</p>
<p>
<button type="button" class="btn btn-info">CLICK HERE>></button>
</p>
</div>
<div class="col-md-4">
<h3> FOOTBALL</h3>
<p> Association football, more commonly known as football or soccer, is a team sport played with a spherical ball between two teams of 11 players. It is played by approximately 250 million players in over 200 countries and dependencies, making it the world's most popular sport </p>
<P> <button type="button" class="btn btn-info">CLICK HERE>></button>
</P>
</div>
<div class="col-md-4">
<h4>BASKETBALL</h4>
<P>Basketball is a team sport in which two teams, most commonly of five players each, opposing one another on a rectangular court, compete with the primary objective of shooting a basketball through the defender's hoop while preventing the opposing team from shooting through their own hoop.</P>
<p>
<button class="btn btn-info" type="button">CLICK HERE>></button>
</p>
</div>
</div>
</div>
<script src="js\bootstrap.js"></script>
<script src="js\bootstrap.min.js"></script>
<script type="js\jquery.js"></script>
</body>
</html>