-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 1.54 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
<html>
<head>
<title> Making Games </title>
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Grandstander&family=Lato&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-42906606-12"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-42906606-12');
</script>
</head>
<body>
<header>
<h1> <a href='/'> Making Games </a> </h1>
</header>
<!-- Paragraph -->
<section>
Little stories about code, pixel art, and music.
</section>
<!-- Body -->
<section>
<ul>
<li>
<a href="oldcoursera.html">What happened to Coursera and Online Education "Mission"</a> - <date>September 2020</date>
</li>
<li>
<a href="1bitweekend2020.html">1 Bit Weekend Jam 2020</a> - <date>September 2020</date>
</li>
<li>
<a href="js13k2020.html">Coler 2D Platformer postmortem js13k 2020</a> - <date>September 2020</date>
</li>
<li>
<a href="musiceducation2020.html">Coursera Course "The Place of Music in 21st Century Education"</a> - <date>September 2020</date>
</li>
</ul>
</section>
<footer>
| <a href="/about">About</a>
| <a href='/'>Stories</a>
| <a href='/jsgames'>Play Made Games</a>
|
<br><br> Generated with <a href="https://github.com/eguneys/jener">Jener</a>
</footer>
</body>
</html>