-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CricStars</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" 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=Roboto:wght@300&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<div class="clouds"></div>
<div class="container">
<div class="heading">
<h1>C</h1>
<h1>r</h1>
<h1>i</h1>
<h1>c</h1>
<h1>S</h1>
<h1>t</h1>
<h1>a</h1>
<h1>r</h1>
<h1>s</h1>
<h3>A Place to find everything Cricket</h3>
</div>
<div class="card card-z-index odi animate__animated animate__slideInLeft" style="width: 18rem;">
<img src="Silver_fern_flag.png" class="card-img-top" alt="Nz Cricket Board image" height="250px;">
<div class="card-body body-odi">
<h5 class="card-title">ODI Cricket</h5>
<p class="card-text">Take a look at some of the top players in world cricket right now when it comes to One Dayers</p>
<a href="odi_version2.html" class="btn btn-dark">Explore</a>
</div>
</div>
<div class="card card-z-index test animate__animated animate__slideInLeft" style="width: 18rem;">
<img src="aus.jpeg" class="card-img-top" alt="Aus Cricket Board Image" height="250px;">
<div class="card-body body-test">
<h5 class="card-title">Test Cricket</h5>
<p class="card-text">Take a look at some of the top players in world cricket right now when it comes to Test Cricket</p>
<a href="test.html" class="btn btn-success">Explore</a>
</div>
</div>
<div class="card card-z-index t20 animate__animated animate__slideInLeft" style="width: 18rem;">
<img src="BCCI-Logo.jpg" class="card-img-top" alt="BCCI Image" height="250px;">
<div class="card-body body-t20">
<h5 class="card-title">T20 Cricket</h5>
<p class="card-text">Take a look at some of the top players in world cricket right now when it comes to T20 Internationals</p>
<a href="t20.html" class="btn btn-primary">Explore</a>
</div>
</div>
</div>
<script src="anime.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script >
</script>
</body>
</html>