-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontact.html
430 lines (318 loc) · 12.1 KB
/
contact.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact</title>
<meta name="description"
content="IPURESULTS - GGSIPU B.TECH RESULTS FOR AFFILIATED INSTITUTES,now you don't need to download result pdf and search your name in
them and then calculate percentages,IPURESULTS will do it all for you in a single click.Also you can know your College and University ranks
along with total marks and number of backlogs for all the semesters.Total number of pending backlogs is also shown.">
<meta name="keywords" content="GGSIPU,B.Tech,Results,total marks,Percentage,Contact page,contact">
<meta name="author" content="Subhahu Jain">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="./logo.png" type="image/x-icon" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-5345114477325138",
enable_page_level_ads: true
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143316096-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-143316096-1');
</script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/7fa36e12b7.js" crossorigin="anonymous"></script>
<style>
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden;
/* Hidden by default. Visible on click */
min-width: 250px;
/* Set a default minimum width */
margin-left: -125px;
/* Divide value of min-width by 2 */
background-color: #333;
/* Black background color */
color: #fff;
/* White text color */
text-align: center;
/* Centered text */
border-radius: 2px;
/* Rounded borders */
padding: 16px;
/* Padding */
position: fixed;
/* Sit on top of the screen */
z-index: 1;
/* Add a z-index if needed */
left: 50%;
/* Center the snackbar */
bottom: 30px;
/* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible;
/* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@-webkit-keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
@keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
body {
text-align: center;
background-color: rgb(249, 247, 238);
}
html,
body {
overflow-x: hidden;
z-index: 0
}
label {
font-weight: bold;
}
.jumbotron {
padding: 1%;
background-color: rgb(34, 71, 131);
height: auto;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 50px;
height: 50px;
-webkit-animation: spin 2s linear infinite;
/* Safari */
animation: spin 2s linear infinite;
}
.logo {
width: 93px !important;
height: 76px !important;
/** float: right; */
}
.bg-secondary {
background-color: rgb(34, 71, 131) !important;
}
.row {
display: flex;
}
#logo-heading {
color: rgb(249, 247, 238);
}
h5 {
display: inline;
font-weight: bold;
}
@media only screen and (max-width: 768px) {
.logo {
width: 35%;
}
/** .row {
width: 100%;
padding-right: 15px;
} **/
#head-box {
margin-left: 0%;
margin-right: 0%;
}
#logo-heading {
color: rgb(249, 247, 238);
}
.logo {
width: 93px !important;
height: 75px !important;
margin-right: 55px;
display: inline;
}
h2 {
font-size: 22px;
}
h5 {
font-size: 15px;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top navbar-shrink" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top"><img src="logo.png" class="logo"></a>
<button
class="navbar-toggler navbar-toggler-right text-uppercase font-weight-bold bg-primary text-white rounded"
type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive"
aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a style="color:white;font-weight: bold;"
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="./index.html">Search</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a style="color:white;font-weight: bold;"
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="./script.html">CollegeWise</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a style="color:white;font-weight: bold;"
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger" href="./ranks.html">Ranks</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a style="color:white;font-weight: bold;"
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger active"
href="./about.html">About</a>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a style="color:white;font-weight: bold;"
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- <div class="jumbotron text-center">
<div id="head-box" style="display: flex;">
<div>
<img src="logo.png" class="logo">
</div>
<br>
<div>
<h2 id="logo-heading">GGSIPU RESULTS </h2>
<h5 style="color:white;">A Web Portal For Examination Results</h5>
</div>
</div>
</div> -->
<div class="container" style="margin-top: 156px;">
<h3><b>Contact us here</b></h3> <br> <br>
<p>
If you require any more information or have any questions about our site's disclaimer, please feel free to
contact
us by email at <span class="badge badge-info"
style="color:black;font-size:medium;">admin@subhahu.tech</span>.
</p>
<br>
<p>
From our website, you can visit other websites by following hyperlinks to such external sites. While we
strive
to
provide only quality links to useful and ethical websites, we have no control over the content and nature of
these
sites. These links to other websites do not imply a recommendation for all the content found on these sites.
Site
owners and content may change without notice and may occur before we have the opportunity to remove a link
which
may have gone 'bad'.
<br>
Please be also aware that when you leave our website, other sites may have different privacy policies and
terms
which are beyond our control. And be sure to check the Privacy Policies of these sites as well as their
"Terms
of Service" before engaging in any business or uploading any information.
</p>
</div>
<br> <br>
<div class="jumbotron" style="margin-top:10px;height:auto;margin-bottom:0;color:white;">
<div class="container">
<b>DISCLAIMER FOR GGSIPU RESULTS </b> <br> <br>
<ul style="text-align:left;">
<li> All the information on this website -
<span class="badge badge-pill badge-info" style="color:black;">http://ipresults.ml/ </span>- is
published in
good faith and for general information purpose only.
</li>
<li>GGSIPU Results does not make any warranties about the
completeness, reliability and accuracy of this information.
</li>
<li> Any action you take upon the information you find on
this website (GGSIPU Results), is strictly at your own risk.
</li>
<li> GGSIPU Results will not be liable for any losses
and/or damages in connection with the use of our website.
</li>
</ul>
</div>
</div>
<div id="snackbar">Email Sent</div>
<script src="index.js"></script>
</body>
</html>