tunnel-racer/game.html

19 lines
581 B
HTML
Raw Normal View History

2022-01-30 10:45:49 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - tunnel racer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
2022-01-31 12:26:35 +00:00
<link type="text/css" rel="stylesheet" href="./main.css">
2022-01-31 09:33:58 +00:00
<link rel="icon" href="./favicon.png">
2022-01-30 10:45:49 +00:00
</head>
<body>
2022-01-31 17:45:39 +00:00
<div id="info">Score: <span id="score">0</span></div>
<button id="start">Start</button>
2022-01-30 10:45:49 +00:00
2022-01-31 17:45:39 +00:00
<script src="./gyronorm.complete.min.js"></script>
2022-01-31 09:33:58 +00:00
<script src="./three.min.js"></script>
2022-01-31 12:26:35 +00:00
<script src="./game.js"></script>
2022-01-30 10:45:49 +00:00
</body>
2022-01-30 11:53:10 +00:00
</html>