-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.16 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>DoHe</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
/>
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title is-1">DoHe</h1>
<h2 class="title is-2">Games</h2>
<ul>
<li>
<a href="games/caubat/Caubat.html">
<figure class="image is-128x128">
<img
alt="pixel art icon for the game caubat"
src="games/caubat/Caubat.icon.png"
/>
</figure>
Caubat
</a>
</li>
<li>
<a href="games/alpaca/alpaca.html">
<figure class="image is-128x128">
<img
alt="pixel art icon for the game caubat"
src="games/alpaca/alpaca.icon.png"
/>
</figure>
Alpaca
</a>
</li>
</ul>
</div>
</section>
</body>
</html>