-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b66f40
commit 04bc57d
Showing
8 changed files
with
539 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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,65 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Page Not Found | ACM @ UIUC</title> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
background-color: #1a1a1a; | ||
color: #ffffff; | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
} | ||
|
||
.container { | ||
max-width: 600px; | ||
} | ||
|
||
h1 { | ||
font-size: 10rem; | ||
margin: 0; | ||
color: #ffffff; | ||
} | ||
|
||
h1 span { | ||
color: #ffa500; | ||
} | ||
|
||
p { | ||
margin-top: 1rem; | ||
font-size: 1.5rem; | ||
color: #aaaaaa; | ||
} | ||
|
||
footer { | ||
margin-top: 2rem; | ||
font-size: 0.9rem; | ||
color: #666666; | ||
} | ||
</style> | ||
<script> | ||
document.addEventListener('DOMContentLoaded', () => { | ||
const yearElement = document.getElementById('year'); | ||
const currentYear = new Date().getFullYear(); | ||
yearElement.textContent = currentYear; | ||
}); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<h1>4<span>0</span>4</h1> | ||
<p>The page you are looking for could not be found.</p> | ||
<footer>© <span id="year"></span> ACM @ UIUC</footer> | ||
</div> | ||
</body> | ||
|
||
</html> |
Binary file not shown.
This file contains 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
This file contains 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
Oops, something went wrong.