-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (32 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Mark Lavrentyev">
<title>Mandelbrot set explorer</title>
<link rel="icon" type="image/x-icon" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,300&display=swap" rel="stylesheet">
<script src="js/main.js"></script>
</head>
<body>
<div id="main">
<div id="controls">
<div class="control">
<label for="iterControl">Iterations</label>
<input type="range" id="iterControl" min="1" max="30" />
</div>
<div class="control">
<label for="cControl">Constant term</label>
<input type="text" id="cControl" />
</div>
</div>
<div id="imageFrame">
<canvas></canvas>
</div>
</div>
</body>
</html>