-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
57 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,57 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Maze Project</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li><a href="#intro">Home</a></li> | ||
<li><a href="#features">Features</a></li> | ||
<li><a href="#about">About</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<section id="intro"> | ||
<div class="cover-image"> | ||
<img src="cover-image.jpg" alt="Cover Image"> | ||
</div> | ||
<div class="intro-content"> | ||
<h1>Maze Project</h1> | ||
<p>Explore the 3D maze game</p> | ||
<a href="[Deployed Project URL]" class="btn">Play Now</a> | ||
</div> | ||
</section> | ||
|
||
<section id="features"> | ||
<h2>Key Features</h2> | ||
<div class="feature"> | ||
<img src="feature1.jpg" alt="Feature 1 Image"> | ||
<h3>3D Navigation</h3> | ||
<p>Experience immersive 3D navigation through the maze.</p> | ||
</div> | ||
<div class="feature"> | ||
<img src="feature2.jpg" alt="Feature 2 Image"> | ||
<h3>Dynamic Lighting</h3> | ||
<p>Enjoy dynamic lighting effects that enhance the gameplay.</p> | ||
</div> | ||
<div class="feature"> | ||
<img src="feature3.jpg" alt="Feature 3 Image"> | ||
<h3>Interactive Enemies</h3> | ||
<p>Face interactive enemies that challenge your skills.</p> | ||
</div> | ||
</section> | ||
|
||
<section id="about"> | ||
<h2>About</h2> | ||
<p>This project was inspired by the classic maze games and first-person shooters from the 90s. Developed over several months, it showcases advanced graphics techniques and game design principles.</p> | ||
|
||
<p>GitHub Repository: <a href="[GitHub Repository URL]">[GitHub Repository URL]</a></p> | ||
</section> | ||
</body> | ||
</html> |