generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create and write boilerplate code for an error 404 file
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 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
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> |
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,3 @@ | ||
--- | ||
permalink: /404.html | ||
--- |