-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (78 loc) · 6.35 KB
/
index.html
File metadata and controls
129 lines (78 loc) · 6.35 KB
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
125
126
127
128
129
<!-----------------------------------------------------------------BEGIN OF HTML------------------------------------------------------------------------->
<!DOCTYPE html>
<html lang="en">
<!---------------------------------------------------------------HEAD OF WEBSITE---------------------------------------------------------------------------->
<head>
<link rel="stylesheet" type="text/css" href="src/css/style.css">
<link rel="stylesheet" type="text/css" href="src/css/grid.css">
<link rel="stylesheet" type="text/css" href="ionicons-2.0.1/css/ionicons.min.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,300;1,400&display=swap" rel="stylesheet" type="text/css">
<title>IPL MANAGEMENT SYSTEM</title>
</head>
<!---------------------------------------------------------------------------------------------------------------------------------------------------------->
<!---------------------------------------------------------------BEGIN OF BODY---------------------------------------------------------------------------->
<body>
<!---------------------------------------------------------------BEGIN OF HEADER---------------------------------------------------------------------------->
<header>
<nav>
<div class="row">
<ul class="main-nav">
<li><a href="history.html">HISTORY</a></li>
<li><a href="fixture.php">FIXTURES</a></li>
<li><a href="auction.html">AUCTION</a></li>
<li><a href="team.html">TEAMS</a></li>
<li><a href="venue.html">VENUES</a></li>
<li><a href="#">STATS</a></li>
<li><a href="login.php">ADMIN</a></li>
</ul>
</div>
</nav>
<div class="hero-text-box">
<h1>IPL MANAGEMENT SYSTEM</h1>
<a class="btn btn-full js--scroll-to-ticket" href="ticket/teams.php">BUY TICKETS</a>
<a class="btn btn-ghost js--scroll-to-more" href="#">MORE ABOUT US</a>
</div>
</header>
<!---------------------------------------------------------------END OF HEADER---------------------------------------------------------------------------->
<!--------------------------------------------------------BEGIN OF "MORE ABOUT US" SECTION------------------------------------------------------------------>
<section class="section-features js--section-feautures">
<div class="row">
<h2>EAT● SLEEP● CRICKET● REPEAT●</h2>
<p class="long-copy">
Hello, welcome to our IPL Management System, your new go to site for any information about our very favorite tournament, IPL. Listed below are a few of the many benefits of visiting this page.
</p>
</div>
<div class="row">
<div class="col span-1-of-3 box">
<i class="ion-ios-infinite-outline icon-big"></i>
<h3>LEGACY</h3>
<p>
To enjoy a specific tournament, which has such a rich historical background it is must to be aware of the past encounters that highlight rivalries, royal match ups, controversies, memorable performances and many more. Don't worry, we got you covered.
</p>
</div>
<div class="col span-1-of-3 box">
<i class="ion-ios-star-outline icon-big"></i>
<h3>UNAMBIGUOUS</h3>
<p>
What makes this MIS one of a kind is its ability to refine the information that hold value to your user. From the ocean of cricket based data, extracting informatics with regards to a specific domain is our rich objective.
</p>
</div>
<div class="col span-1-of-3 box">
<i class="ion-ios-stopwatch-outline icon-big"></i>
<h3>REAL-TIME UPDATE</h3>
<p>
We realistically understand that to watch 60 matches end to end for about 2 months with a variable time schedule is not possible for majority of mass. We make sure every recent match essential detail and analysis is available in one go for our viewers.
</p>
</div>
</div>
</section>
<!--------------------------------------------------------END OF "MORE ABOUT US" SECTION------------------------------------------------------------------>
<!------------------------------------------------------------BEGIN OF JAVASCRIPT INCLUSIONS---------------------------------------------------------------->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="src/js/Javascript/script.js"></script>
<script src="src/js/Javascript/Waypoint/jquery.waypoints.min.js"></script>
<!------------------------------------------------------------END OF JAVASRIPT INCLUSIONS----------------------------------------------------------------->
</body>
<!----------------------------------------------------------==-----END OF BODY------------------------------------------------------------------------------>
</html>
<!-----------------------------------------------------------------END OF HTML------------------------------------------------------------------------------>