Files
kotlin-mandelbrot/web/index.html
2016-06-15 10:24:10 +02:00

31 lines
884 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Julia</title>
<style type="text/css">
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
position:absolute;
}
</style>
</head>
<body>
<script type="application/javascript" src="js/kotlin/kotlin.js"></script>
<script type="application/javascript" src="js/generated/mandelbrot.js"></script>
<script type="text/javascript">
document.open();
document.write("<img style='border: 0; display: none;' alt='' src='https://stats.astraeus.nl/stats?");
document.write("id=3&referrer="+document.referrer+"&url="+window.location.href+"'&agent="+navigator.userAgent+"' />");
document.close();
</script>
</body>
</html>