-
Notifications
You must be signed in to change notification settings - Fork 0
/
downredir.html
86 lines (70 loc) · 3.82 KB
/
downredir.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Project Infomania</title>
<link rel="icon" href="icons/main-ico.svg">
<!--Bootstrap CDN scripts-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous">
</script>
<!-- Font CDN -->
<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=Ubuntu:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bona+Nova&display=swap" rel="stylesheet">
<!--CSS stylesheet-->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<section id="title">
<div class="container-fluid">
<!-- Nav Bar -->
<nav class="navbar navbar-dark navbar-expand-lg ">
<a class="navbar-brand" href="index.html">Infomania</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#footredir">Contact</a></li>
<li class="nav-item"><a class="nav-link active" href="#">Download</a></li>
<li class="nav-item"><a class="nav-link" href="othpro.html">Other Projects</a></li>
</ul>
</div>
</nav>
<!-- Title -->
<div class="row top-con">
<div class="col-lg-6">
<h1>Page not Available!</h1>
<p class="head-note">This Site has been made in order to replicate original startup sites and is purely for testing purpose. You can navigate back by clicking Home in menu. </p>
</div>
<div class="col-lg-6">
<img class="ph-img" src="images/phone.png" alt="phone-img">
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footredir">
<div class="container-fluid">
<a href="https://www.facebook.com/sanish.nirwan" target="_blank"><img class="social-ico" src="icons/facebook.svg" alt="fb-ico"></a>
<a href="https://twitter.com/Sanish_P1" target="_blank"><img class="social-ico" src="icons/twitter.svg" alt="tw-ico"></a>
<a href="https://in.linkedin.com/in/sanish-nirwan-39ab88192" target="_blank"><img class="social-ico" src="icons/linkedin.svg" alt="ln-ico"></a>
<a href="https://github.com/Sanish07" target="_blank"><img class="social-ico" src="icons/github.svg" alt="git-ico"></a>
</div>
<p class="cprt">© Copyright 2021 Infomania-Sanish.</p>
</footer>
</body>
</html>