Skip to content

Commit

Permalink
Create and write boilerplate code for an error 404 file
Browse files Browse the repository at this point in the history
  • Loading branch information
Robrowno committed Apr 17, 2022
1 parent fc7256b commit a5db4ad
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
35 changes: 35 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A simple game of Rock, Paper, Scissors!">
<meta name="keywords" content="rockpaperscissors, game, javascriptgame">

<link rel="stylesheet" href="./assets/css/style.css">
<title>Rock-Paper-Scissors</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon_io/favicon-16x16.png">
<link rel="manifest" href="assets/images/favicon_io/site.webmanifest">
</head>

<body>
<h1> Rock Paper Scissors!</h1>

<h2><b>Error 404</b></h2>
<p> An error has occured, please click on the button below to go back to the start page:</p>
<div id="reset">
<a href="index.html">Go Back</a>

</div>



</body>



</html>
3 changes: 3 additions & 0 deletions 404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
permalink: /404.html
---

0 comments on commit a5db4ad

Please sign in to comment.