-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maze Project - Portfolio</title>
<link rel="stylesheet" href="styles.scss">
</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>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="intro">
<div class="cover-image">
<img src="cover-image.jpg" alt="Maze Project Cover Image">
</div>
<div class="intro-content">
<h1>Maze Project</h1>
<p>An immersive 3D maze game experience</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="3D Navigation">
<h3>3D Navigation</h3>
<p>Experience immersive 3D navigation through the maze.</p>
</div>
<div class="feature">
<img src="feature2.jpg" alt="Dynamic Lighting">
<h3>Dynamic Lighting</h3>
<p>Enjoy dynamic lighting effects that enhance the gameplay.</p>
</div>
<div class="feature">
<img src="feature3.jpg" alt="Interactive Enemies">
<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>Hi, I'm Sean Kihiu, the developer of this project. My passion for game development and graphics programming led me to create this immersive 3D maze game. I enjoy tackling complex challenges and bringing creative ideas to life.</p>
<p>This project is a part of my portfolio at Holberton School, demonstrating my skills in game development, C programming, and SDL2. Feel free to explore the code on my GitHub and connect with me on LinkedIn and Twitter.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Stay connected:</p>
<ul>
<li><a href="https://www.linkedin.com/in/yourprofile">LinkedIn</a></li>
<li><a href="https://github.com/yourprofile">GitHub</a></li>
<li><a href="https://twitter.com/yourprofile">Twitter</a></li>
<li><a href="[GitHub Repository URL]">Project GitHub Repository</a></li>
</ul>
</section>
</body>
</html>