-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
123 lines (112 loc) · 5.39 KB
/
games.html
File metadata and controls
123 lines (112 loc) · 5.39 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Games - The Gloopzone</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon-static.ico">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
</head>
<body>
<header style="border: #9d6ec5; border-width:5px; border-style: dashed;">
<h1>Welcome to the Gamezone!</h1>
<h4 style="font-style: italic;">Home to Games I've Had Some Involvement With</h4>
</header>
<ul class="nav">
<li class="nav"><a href="index.html">Home</a></li>
<li class="nav"><a href="music.html">Music</a></li>
<li class="nav"><a class="active" href="games.html">Games</a></li>
<li class="nav"><a href="buttons.html">Buttons</a></li>
<li class="nav"><a href="about.html">About</a></li>
</ul>
<h1>Portfolio</h1>
<div class="row">
<div class="lclosecolumn">
<h2>Slime to the Sun (2023)</h2>
<p style="font-style: italic;">Journey to a Planet's Core</p>
<p>You're a slime on a mission to save your world from its own core! Stick to floors, walls, and ceilings as you delve ever deeper.<br><br>
Slime to the Sun is a solo project made for the 10th Brackeys Gamejam, with the theme "diving deeper"! I was made in 1 week, and it was the first time I finished a gamejam submission in time for its deadline!</p>
<a class="button" href="https://gloopbloop.itch.io/slime-to-the-sun">Play Online or Download on Itch.io</a>
</div>
<div class="column">
<div class="center" style="height:340px;">
<div class="rounded-image" style="background-color:#43436a">
<div class="center" style="height:315px">
<img src="assets/images/slimetothesunlogo.png" height="100%">
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="column">
<div class="center" style="height:340px;">
<div class="rounded-image">
<div class="center" style="height:315px">
<img src="assets/images/twito-header.jpg" width="100%">
</div>
</div>
</div>
</div>
<div class="rclosecolumn">
<h2>Twenty, in Total (2023)</h2>
<p style="font-style: italic;">Aw Man, I'm Stuck In A Timeloop Again</p>
<p>Get your bearings, solve some puzzles, and open the door before time runs out and everything starts over!<br><br>
Twenty, in Total was made as a collaboration between 3 developers! I mainly focused on puzzle design, music, and programming,
Pictocat brought the art and map design, and FryingPan was in charge of the programming.</p>
<a class="button" href="https://www.newgrounds.com/portal/view/891353">Play Online on Newgrounds</a>
</div>
</div>
<div class="row">
<div class="lclosecolumn">
<h2>High Zeaz (2023)</h2>
<p style="font-style: italic;">The Zombie Pirate Movement Shooter</p>
<p>Navigate treacherous shiprecks, launch yourself into enemies at high speeds, and
experience undead seafaring mayhem with your arsenal of chains-turned-grappling hooks!<br><br>
High Zeaz was originally made in a weekend-long Halloween gamejam with the goal of fitting the themes of
"Zombiefied" and "💀" by a team of 5, with me making the soundtrack.<br><br>
At Rensselaer GameFest, a student game development showcase and competition, High Zeaz was nominated for
Technical Exellence and won Exellence in Audio.
</p>
<a class="button" href="https://pixeltaku.itch.io/high-zeaz">Download on Itch.io</a>
</div>
<div class="column">
<div class="center" style="height:440px;">
<iframe width="100%" height="315" style="max-width: 560px;"
src="https://www.youtube.com/embed/OaO7m1SkarI?start=19" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
</div>
</div>
<br>
<div class="row">
<div class="column">
<div class="center" style="height:340px;">
<div class="video-placeholder">
<div class="center" style="height:315px">
<p style="font-size: 100px;">?</p>
</div>
</div>
</div>
</div>
<div class="rclosecolumn">
<h2>More Coming Soon</h2>
<p style="font-style: italic">What's next? It's a mystery...</p>
<h2>Misc. Links</h2>
<p><a class="button" href="https://gloopbloop.newgrounds.com/">Newgrounds</a><br>
<a class="button" href="https://gloopbloop.itch.io/">Itch.io</a>
</p>
</div>
</div>
<footer style="border: #9d6ec5; border-width:5px; border-style: dashed;">
<h3>Part of the Team Prism webring!</h3>
<p>
<a class="button" href="https://pictocat.team-prism.rocks/"><-- Pictocat</a>
<a class="button" href="https://gloopbloop.pages.team-prism.rocks/">GloopBloop</a>
<a class="button" href="https://fryingpan.pages.team-prism.rocks/">FryingPan --></a>
</p>
</footer>
</body>
</html>