A web version of the endless runner game Parallel Overhead.
https://huitsi.codeberg.page/ParallelOverhead/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
560 B
25 lines
560 B
<!DOCTYPE html> |
|
<!-- |
|
Copyright © 2020 Linus Vanas <linus@vanas.fi> |
|
SPDX-License-Identifier: MIT |
|
--> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>Parallel Overhead</title> |
|
<link rel=icon href="data/parallel_overhead.png"> |
|
<link rel=license href="LICENSE.txt"> |
|
<script src="parallel_overhead.js"></script> |
|
<style> |
|
body |
|
{ |
|
margin:0; |
|
overflow:hidden; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<div id="error">The game script has not been loaded (yet).</div> |
|
<canvas id="game-canvas" width=480 height=480></canvas> |
|
</body> |
|
</html>
|
|
|