-
Notifications
You must be signed in to change notification settings - Fork 1
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
162e0ee
commit 302012a
Showing
5 changed files
with
94 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Controls to Remember</title> | ||
<link rel="stylesheet" href="../styles/main.css"> | ||
<link rel="stylesheet" href="../styles/header.css"> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<div class="header-container"> | ||
<h1>Controls to Remember</h1> | ||
<div class="header-right-box"> | ||
<div> | ||
<nav> | ||
<ul> | ||
<li><a href="../index.html">Home</a></li> | ||
<li> | ||
<div class="current-page">Games</div> | ||
</li> | ||
</ul> | ||
</nav> | ||
<div class="autocomplete"> | ||
<input type="text" id="search-game" placeholder="Search games..." /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
|
||
<main> | ||
<div id="main_content" class="main-container"> | ||
<a class="game-index-anchor" href="../index.html?game=minecraft"> | ||
<div class="game-index-item"><img class="game-title" src="../images/games/minecraft/minecraft_logo.png" | ||
alt="Minecraft Logo"> | ||
|
||
<p><strong>Minecraft</strong> is a popular sandbox game known for its open-world creativity and | ||
survival | ||
aspects. </p> | ||
</div> | ||
</a> | ||
</div> | ||
</main> | ||
<footer> | ||
<div class="container"> | ||
<p>© 2024 Spideys. All rights reserved.</p> | ||
</div> | ||
</footer> | ||
|
||
<script src="../scripts/content_manager.js"></script> | ||
<script src="../scripts/main.js"></script> | ||
</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
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