-
Notifications
You must be signed in to change notification settings - Fork 43
Creation of 404 HTML File for The KOSS Website #182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ErrorDocument 404 /404.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
@charset "UTF-8"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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,