Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinnn3 authored Jul 1, 2024
1 parent 243068c commit 5529ed4
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions index.html
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>

0 comments on commit 5529ed4

Please sign in to comment.