-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (122 loc) · 4.14 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>some games</title>
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" type="text/css" href="main.css"/>
</head>
<body>
<div class="header">
<img class="logo" src="images/brodavi.png" alt="brodavi" />
<img class="somegames" src="images/somegames.svg" alt="some games" />
</div>
<div class="main-container">
<div class="imgdiv">
<img src="images/01.svg" alt="01" />
</div>
<div class="games">
<a class="textshadowed" href="http://brodavi.github.io/tint/">
<div class="game flexcenter boxshadowed">
<h2>
there is no time
</h2>
<img src="images/tint.png" alt="screenshot" />
<div class="title boxshadowed">
my weird LD27 game involving time loops
</div>
</div>
</a>
<a class="textshadowed" href="http://brodavi.github.io/treasure/">
<div class="game flexend boxshadowed">
<h2>
treasure
</h2>
<img src="images/treasure.png" alt="screenshot" />
<div class="title boxshadowed">
my dumb, digging, LD29 game
</div>
</div>
</a>
<a class="textshadowed" href="http://brodavi.github.io/kunektd">
<div class="game flexstart boxshadowed">
<h2>
kunektd
</h2>
<img src="images/kunektd.png" alt="screenshot" />
<div class="title boxshadowed">
my LD30 game, playing with impress.js
</div>
</div>
</a>
<a class="textshadowed" href="http://brodavi.github.com/EpicSpaceStunts/">
<div class="game flexcenter boxshadowed">
<h2>
Epic Space Stunts
</h2>
<img src="images/epicspacestunts.png" alt="screenshot" />
<div class="title boxshadowed">
a game of dodge-the-asteroids. Experimenting with the Ash Entity Framework.
</div>
</div>
</a>
<a class="textshadowed" href="http://brodavi.github.com/slingit/">
<div class="game flexend boxshadowed">
<h2>
slingit
</h2>
<img src="images/slingit.png" alt="screenshot" />
<div class="title boxshadowed">
my entry into the Experimental Gameplay Project for June 2012 themed "Rotating".
</div>
</div>
</a>
<a class="textshadowed" href="http://brodavi.github.com/kittenworld/">
<div class="game flexstart boxshadowed">
<h2>
kittenworld
</h2>
<img src="images/kittenworld.png" alt="screenshot" />
<div class="title boxshadowed">
my LD 23 JAM entry. An experiment in cellular automata as a game.
</div>
</div>
</a>
<a class="textshadowed" href="http://brodavi.github.com/No-Mother-Alone/">
<div class="game flexcenter boxshadowed">
<h2>
No-Mother-Alone
</h2>
<img src="images/nomotheralone.png" alt="screenshot" />
<div class="title boxshadowed">
my LD 22 entry. First "game" ever.
</div>
</div>
</a>
</div> <!-- /end games -->
<div class="deco1">
<div class="decoration1a"></div>
<div class="decoration1b"></div>
</div>
</div> <!-- /end main-container -->
<div class="not-games-container">
<h1>not-games</h1>
<a class="textshadowed" href="/p2ptodo.html">
<div class="flexcenter boxshadowed">
<h2>
p2p-todo
</h2>
<div class="title boxshadowed">
p2p-todo
</div>
</div>
</a>
</div>
<div class="deco2">
<div class="decoration2a"></div>
<div class="decoration2b"></div>
<div class="decoration2c"></div>
</div>
</body>
</html>