Mandelbrot
This commit is contained in:
24
web/index.html
Normal file
24
web/index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Mandelbrot</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>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user