24 lines
637 B
HTML
24 lines
637 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Painted World</title>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
||
|
|
<meta name="author" content="Victor Giers">
|
||
|
|
<script
|
||
|
|
src="https://code.jquery.com/jquery-3.5.1.min.js"
|
||
|
|
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
|
||
|
|
crossorigin="anonymous"></script>
|
||
|
|
<link rel="stylesheet" type="text/css" href="painted_world.css">
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div id="container"><div id="overlay"></div></div>
|
||
|
|
|
||
|
|
<script src="v3d.js"></script>
|
||
|
|
<script src="painted_world.js"></script>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|