-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpythonpath.ejs
More file actions
75 lines (69 loc) · 3.49 KB
/
pythonpath.ejs
File metadata and controls
75 lines (69 loc) · 3.49 KB
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
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Path Explorer - Tech Grow Games</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="container">
<a href="/" class="header-logo-link">
<img src="/img/Tech%20Grow%20website%20logo.jpg" alt="Tech Grow Logo" class="header-logo">
</a>
<h1>Python Path Explorer</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/courses">Courses</a></li>
<li><a href="/instructors">Instructors</a></li>
<li><a href="/events">Events</a></li>
<li><a href="/faqs">FAQ</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="/pythonpath" class="active">Python Explorer</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<h2>Explore the Python Path!</h2>
<p>Guide your friendly Python snake to collect code snippets and build your first program. Avoid the walls and yourself!</p>
</div>
</section>
<section class="game-section">
<div class="container game-container">
<div class="game-board" id="gameBoard">
</div>
<div class="game-sidebar">
<h3>Game Stats</h3>
<p>Score: <span id="score">0</span></p>
<button id="startButton" class="button">Start Game</button>
<button id="resetButton" class="button">Reset Game</button>
<h3>Code Console</h3>
<div id="codeConsole" class="code-console">
<span class="snippet-prefix"># Your Python Code Path:</span>
</div>
<h3>Instructions</h3>
<p>Use the <strong>Arrow Keys</strong> to move the snake.</p>
<p>Collect the <span class="snippet-key">Python Keywords</span>. Avoid hitting the walls or yourself.</p>
</div>
</div>
</section>
</main>
<footer>
<img src="/img/Tech%20Grow%20website%20logo.jpg" alt="Tech Grow Logo" height="40" style="vertical-align: middle; margin-right: 10px;">
<p style="display: inline-block; vertical-align: middle;">2025 Tech Grow ©</p>
<div class="social-icons">
<a href="#" target="_blank" aria-label="Tech Grow on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" target="_blank" aria-label="Tech Grow on X (Twitter)"><i class="fab fa-x-twitter"></i></a>
<a href="#" target="_blank" aria-label="Tech Grow on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" target="_blank" aria-label="Tech Grow on Instagram"><i class="fab fa-instagram"></i></a>
</div>
</footer>
<script src="/js/pythonpath.js"></script>
</body>
</html>