-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgamedev.html
More file actions
106 lines (99 loc) · 5.6 KB
/
gamedev.html
File metadata and controls
106 lines (99 loc) · 5.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script defer src="https://cloud.umami.is/script.js" data-website-id="84641eae-f0c5-468b-8b48-f9226d664d2f"></script>
<title>Game Dev Portfolio | CodeKokeshi</title>
<meta name="description" content="Game development portfolio by CodeKokeshi. Playable games including Trapped in a Nightmare (Godot) and Neon Highway Survival (HTML5). Game clips from Godot, Unity, and RPG Maker projects." />
<meta name="keywords" content="CodeKokeshi games, Trapped in a Nightmare, Neon Highway Survival, Godot games, Unity games, RPG Maker games, indie game developer, top-down shooter, metroidvania, Chrono Plasmorph, game dev portfolio" />
<meta name="author" content="CodeKokeshi" />
<link rel="canonical" href="https://codekokeshi.github.io/gamedev.html" />
<meta name="theme-color" content="#0f1116" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&family=Press+Start+2P&family=Orbitron:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/site.css" data-cache-bust="true" />
</head>
<body>
<canvas id="particle-canvas"></canvas>
<div class="page-shell">
<header class="top-bar">
<a class="brand" href="index.html">Code Kokeshi</a>
<nav class="nav-links" aria-label="Pages">
<a class="nav-link" href="gamedev.html" aria-current="page">Game Dev</a>
<a class="nav-link" href="art.html">Art</a>
<a class="nav-link" href="projects.html">Projects</a>
<a class="nav-link" href="reviewers.html">Reviewers</a>
<a class="nav-link" href="thesis_section/index.html">Thesis</a>
</nav>
<div class="theme-switcher" role="group" aria-label="Theme selector">
<span class="theme-label">Theme</span>
<button type="button" class="theme-button" data-theme-option="dark" aria-pressed="false">Dark</button>
<button type="button" class="theme-button" data-theme-option="light" aria-pressed="false">Light</button>
<button type="button" class="theme-button" data-theme-option="wood" aria-pressed="false">Retro</button>
<button type="button" class="theme-button" data-theme-option="cyberpunk" aria-pressed="false">Cyberpunk</button>
</div>
</header>
<main>
<section class="page-section hero-simple">
<h1 class="section-title">Game Dev Portfolio</h1>
<p class="lead">Games made in Godot and Unity. Watch the builds below.</p>
<div class="link-row">
<a class="btn" href="https://codekokeshi.itch.io/" target="_blank" rel="noopener">Visit my Itch.io</a>
</div>
</section>
<section class="page-section">
<h2 class="section-title">Playable Games</h2>
<div class="game-grid no-animations">
<article class="portfolio-card">
<div class="portfolio-card__header">
<h3>Trapped in a Nightmare</h3>
<span class="pill">Godot</span>
</div>
<p>Top-down action game with slash and shoot combat. Fight through an abandoned facility filled with slimes, orcs, and mysterious creatures. Escape the never-ending nightmare.</p>
<div class="card-links">
<a href="games/Trapped-In-A-Nightmare/trapped-in-a-nightmare.html">Play Game</a>
<a href="https://codekokeshi.itch.io/trapped-in-a-nightmare" target="_blank" rel="noopener">View on itch.io</a>
</div>
</article>
<article class="portfolio-card">
<div class="portfolio-card__header">
<h3>Neon Highway Survival</h3>
<span class="pill">HTML5</span>
</div>
<p>Fast-paced top-down survival shooter with neon aesthetics. Drive vehicles, shoot enemies, level up with powerful upgrades, and survive as long as possible in this action-packed game.</p>
<div class="card-links">
<a href="games/Neon-Highway-Survival/neon-highway-survival.html">Play Game</a>
</div>
</article>
<article class="portfolio-card coming-soon">
<div class="portfolio-card__header">
<h3>More Games Coming Soon</h3>
<span class="pill">TBA</span>
</div>
<p>Future game projects will appear here. Stay tuned!</p>
</article>
</div>
</section>
<section class="page-section">
<h2 class="section-title">Game Clips</h2>
<div id="game-video-slideshow" class="video-slideshow-container"></div>
</section>
</main>
<footer class="site-footer">© <span id="year"></span> CodeKokeshi.</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<script defer src="assets/js/animations.js"></script>
<script defer src="assets/js/site.js"></script>
<script defer src="assets/js/video-slideshow.js"></script>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>