-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
167 lines (162 loc) · 5.41 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<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>CricketerInfo</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./image/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./image/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./image/favicon-16x16.png"
/>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<style>
.banner-image {
background-image: url("./image/bg.jpg");
background-size: cover;
background-position: center center;
}
</style>
<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=Akaya+Telivigala&family=Open+Sans:wght@300&family=Oswald:wght@400;700&family=Ubuntu:ital,wght@1,400;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-dark p-md-3">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img
src="./image/cricketlogo.jpg"
alt="logo"
width="40"
height="40"
class="rounded-pill"
/>
</a>
<a class="navbar-brand" href="./home.html">Cricket Info</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="mx-auto"></div>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white" href="./home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="./about.html">About Us</a>
</li>
<li class="nav-item">
<a
class="nav-link text-white"
href="mailto:superheroinfo18@gmail.com?subject=Regarding Feedback"
>Mail Us</a
>
</li>
</ul>
</div>
</div>
</nav>
<div
class="banner-image w-100 vh-100 d-flex justify-content-center align-items-center"
>
<div class="content text-center bg-secondary">
<h1 class="text-light">This Website Is Dedicated To My Idol</h1>
</div>
</div>
<div class="container-fluid my-5 text-center">
<h3>About Me:</h3>
<h5>
Hello I Am Vikas Kumar UnderGraduate At N.I.T RAIPUR Pursuing Electrical
Engineering I Love To Play And Watch Cricket And You May Know My
Favourite Cricketer Till Now That Is King Kohli As Obvious
</h5>
</div>
<div class="container-fluid my-5 text-center">
<h3>Inspiration For Making This Website:</h3>
<h5>
I Used To Wonder That There Should Be A Website Which In Seconds Gives
You Everything Related To A Particular Cricketer So That Is My
Inspiration, And I am Glad That I am Able To Develop It.
</h5>
</div>
<div class="container-fluid my-5 text-center">
<h3>What This Website Do?</h3>
<h5>
This Website Let's You Search For Your Favorite Cricketer And You Will
Get Every Thing Related To Your Favorite Cricketer, You Can Search Any
Cricketer's Name That You Want, You Will Get Info About It.
</h5>
</div>
<div class="text-center">
<h3>Special Credits:</h3>
<h5>
This Website Uses An Unofficial CricBuzz API So Special Thanks To
Developer Of This API, Please Give Your FeedBack That Is Crucial For Me.
</h5>
</div>
<footer class="bg-light text-center text-lg-start">
<!-- Copyright -->
<div class="text-center" style="background-color: rgba(0, 0, 0, 0.541)">
© 2022 Copyright:
<h6>Cricketers-Info All Rigths Reserved</h6>
<div>
<h6>
<a
style="text-decoration: none"
id="feedback"
class="text-white"
href="mailto:superheroinfo18@gmail.com?subject=Regarding Feedback"
>Give Us FeedBack</a
>
</h6>
</div>
</div>
<!-- Copyright -->
</footer>
</body>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script type="text/javascript">
var nav = document.querySelector("nav");
window.addEventListener("scroll", function () {
if (window.pageYOffset > 100) {
nav.classList.add("bg-dark", "shadow");
} else {
nav.classList.remove("bg-dark", "shadow");
}
});
</script>
</html>