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

Commit

Permalink
404 not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Jazza-231 committed Jul 13, 2024
1 parent c0bc17f commit fe9a912
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
63 changes: 62 additions & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,69 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hmmmmmm</title>

<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="common.css" />

<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main>What do you think you're doing?</main>
<header>
<ul class="header-text-items">
<li id="home">
<a href="./">Home</a>
</li>
<li id="projects">
<a href="projects">
Projects
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
id="angle-down"
>
<path
d="M17,9.17a1,1,0,0,0-1.41,0L12,12.71,8.46,9.17a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l4.24,4.24a1,1,0,0,0,1.42,0L17,10.59A1,1,0,0,0,17,9.17Z"
></path>
</svg>
</a>
<div class="dropdown projects-dropdown">
<a href="projects/website">This website</a>
<a href="projects/sa">Scratch Addons</a>
<a href="projects/mediascout">MediaScout</a>
<a href="projects/mobile">Scratch mobile</a>
</div>
</li>
<li id="links">
<a href="links">Links</a>
</li>
<li id="posts">
<a href="#">Posts</a>
</li>
</ul>
</header>

<main>
<div class="four-container">
<h1>Error 404: 404 page not found.</h1>
</div>
</main>

<footer>
<div class="footer-text">&copy; 2024 Jazza. All rights reserved.</div>
<div class="made-with-love">
Made with PURE HATRED in Australia by Jazza.
</div>
</footer>

<script src="headerMargin.js"></script>
</body>
</html>
8 changes: 8 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,11 @@
opacity: 1;
transform: translateX(0);
}

.four-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}

0 comments on commit fe9a912

Please sign in to comment.