-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGameJams.html
More file actions
85 lines (72 loc) · 3.48 KB
/
Copy pathGameJams.html
File metadata and controls
85 lines (72 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ilangeerligs.github.io | Portfolio </title>
<meta name="description" content="Check out my projects!">
<meta name="author" content="Ilan Geerligs">
<!-- Embed page for social media posts -->
<meta property="og:description" content="ilangeerligs.github.io description">
<meta property="og:title" content="Ilan Geerligs | Portfolio">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.ilangeerligs.github.io">
<meta property="og:image" content="http://www.ilangeerligs.github.io/img/logo.png">
<meta property="og:site_name" content="ilangeerligs.github.io">
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="img/favicon.png">
<!-- Page Style -->
<link rel="stylesheet" type="text/css" href="style.css?version=1">
</head>
<body>
<!-- Navigation Bar -->
<div class="topnav" id="myTopnav">
<a href="index.html" class="rightVerticalLine">Home</a>
<a href="https://github.com/IlanGeerligs" class="icon leftVerticalLine">GitHub</a>
<a href="https://www.linkedin.com/in/ilan-geerligs-7375a9282/" class="icon leftVerticalLine">LinkedIn</a>
<a href="Resume.html" class="icon leftVerticalLine" onclick="myFunction()">Resume</a>
</a>
</div>
<!-- Description Section -->
<div class="descriptionDivRAOT">
<!-- Section -->
<h1>Game Jams</h1>
<p style="text-align: center;">I participated in the 2020, 2021, 2022 and 2023 GMTK Game Jams all with a small group of friends.</p>
<p style="text-align: center;">All the games were made in Unity over a 48 hour period.
</p>
</div>
<!-- Description Section -->
<div class="descriptionDiv">
<h2><a href="https://cheemis.itch.io/price-of-fuzzy-dice">Price of Fuzzy Dice</a></h2>
<img src="img/GameJams/Dice.png"></img>
<h2></h2>
<h2><a href="https://cheemis.itch.io/gone-fishering">Gone Fishering</a></h2>
<img src="img/GameJams/GoneFishering.png"></img>
<h2></h2>
<h2><a href="https://cheemis.itch.io/god-a-burger">God a Burger</a></h2>
<img src="img/GameJams/GodABurger.png"></img>
<h2></h2>
<h2><a href="https://agreafel.itch.io/out-of-cntrl">Out of Cntrl</a></h2>
<img src="img/GameJams/OutOfCntrl.png"></img>
</div>
<div class="contact">
<div class="contact-body">
<!-- Section -->
<h2>Contact</h2>
<p>Click the email address to send a message. I look forward to hearing from you.</p>
<p><strong><a href="mailto:ilangeerligs.00@gmail.com">ilangeerligs.00@gmail.com</a></strong></p>
</div>
</div>
<!-- Navigation Script -->
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>