-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raylib - Arcade</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Honk&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="wiki/style.css" />
<script src="./wiki/script.js"></script>
</head>
<body style="height: 100%;;">
<div class="gameTitle center">Raylib Arcade</div>
<!--<div><a href="wiki/games.html">Games list</a></div>-->
<div w3-include-html="./wiki/games.html"></div>
<!--<iframe src="wiki/games.html"></iframe>-->
<div w3-include-html="./wiki/footer.html" class="footer"></div>
<script>
includeHTML();
window.addEventListener('load', dolist);
</script>
</body>
</html>