Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ErrorDocument 404 /404.html
61 changes: 61 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!doctype html>
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Error 404 - Page Not Found!</title>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css" />
<link href="./assets/images/favicon.png" rel="shortcut icon" type="image/x-icon" />
</head>

<body>
<div class="container">
<img class="ops" src="./assets/images/404.svg" />
<br />
<h3>The Page you are looking for might have been removed
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe there is a slight grammatical and spelling error here; shouldn't it be,

The page you are looking for might have been removed, had its name changed, or its temporarily unavailable!

<br /> had its name changed or its temporarilty unavailable</h3>
<br />
<a class="buton" href="https://kossiitkgp.org/">Go to Home Page</a>
</div>
<!***FOOTER****/>
<div class="ui inverted vertical footer segment">
<div class="ui center aligned container">
<div class="ui stackable inverted divided grid">
<div class="four wide column">
<h4 class="ui inverted header">Main Menu</h4>
<div class="ui inverted link list">
<a href="./index.html" class="item">Home</a>
<a href="./about" class="item">About Us</a>
<a href="./events" class="item">Events</a>
<a href="./projects" class="item">Projects</a>
</div>
</div>
<div class="four wide column">
<h4 class="ui inverted header">Contact Us</h4>
<div class="ui inverted link list">
<a href="https://www.facebook.com/kossiitkgp/" class="item">Facebook</a>
<a href="mailto:contact@kossiitkgp.org" class="item">contact@kossiitkgp.org</a>
</div>
</div>
<div class="six wide column">
<h4 class="ui inverted header">Kharagpur Open Source Society</h4>
<div class="ui inverted link list"><a href="http://iitkgp.ac.in" target="_blank" class="item">Indian Institute of Technology Kharagpur, India</a></div>
</div>
</div>
<div class="ui inverted section divider"></div>

<a href="index.html"><img src="./assets/images/kosslogo.png" class="ui centered mini image"></a>

<div class="ui horizontal inverted small divided link list">
<a class="item" href="https://github.com/kossiitkgp">GitHub</a>
<a class="item" href="./contact">Contact Us</a
</div>
</div>
</div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script src="assets/library/jquery.counterup.min.js"></script>

</body>
</html>
66 changes: 66 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
@charset "UTF-8";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add a screenshot of how the page looks? That would really make reviewing easy.

/* CSS Document */

body {
background: #fff;
padding: 0;
margin: 0;
font-family: Helvetica, Arial, sans-serif;
}

.container {
background-color: #fff;
margin: 0 auto;
text-align: center;
padding-top: 50px;
}

h3 {
font-size: 16px;
color: #3498db;
font-weight: bold;
text-align: center;
line-height: 130%;
}

.buton {
background: #3498db;
padding: 10px 20px;
color: #fff;
font-weight: bold;
text-align: center;
border-radius: 3px;
text-decoration: none;
}

a:hover {
color: #ff0;
}

span {
font-size: 14px;
color: #FFF;
font-weight: normal;
text-align: center;
}

span a {
color: #FF0;
text-decoration: none;
}

span a:hover {
color: #F00;
}

@media screen and (max-width: 500px) {
img {
width: 70%;
}
.container {
padding: 70px 10px 10px 10px;
}
h3 {
font-size: 14px;
}
}
Loading