Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Added page 404
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzhake authored Nov 6, 2023
1 parent 27affc6 commit fc65619
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>

<script src="code.js"></script>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="icon" type="image/x-icon" href="images/favicon.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playpen+Sans">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
</head>
<body onLoad="onLoad()">

<div class="page-select">
<div class="toggleTheme">
<button onClick="toggleTheme()">
<img src="images/moonIcon.png" alt="" id="sunIcon">
<img src="images/sunIcon.png" alt="" id="moonIcon">
</button>
</div>
<div class="half-select">
<form action="index.html">
<button type="submit" class="select-button fadeDown">
<div class="centered-text">
<p class="select-button-text">Home</p>
</div>
</button>
</form><!--
--><form action="projects.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 0.5s;">
<div class="centered-text">
<p class="select-button-text">Projects</p>
</div>
</button>
</form><!--
--><form action="news.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 1s;">
<div class="centered-text">
<p class="select-button-text">News</p>
</div>
</button>
</form><!--
--><form action="stuff.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 1.5s;">
<div class="centered-text">
<p class="select-button-text">Stuff</p>
</div>
</button>
</form>
</div>
</div>

<div class="green-text">
<div class="fade-in-row">
<h1>Hi, this is page 404.</h1>
</div>
<div class="fade-in-row">
<h1>This means that you are in wrong place</h1>
</div>
<div class="fade-in-row">
<h1>If you think that you should not be here, please, report me how did you get on this page</h1>
</div>
<div class="fade-in-row">
<h1>You can change page in bar above</h1>
</div>
</div>



</body>
</html>

0 comments on commit fc65619

Please sign in to comment.