-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.39 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer type="module"></script>
</head>
<body>
<div class="controls">
<div class="func">
<label for="function">f(x) =</label>
<input
id="function"
name="function"
type="text"
class="function"
value="-2x^2+3x+2"
/>
</div>
<!-- <button>Run</button> -->
<!-- <span class="x">Graph width: 50</span> -->
<!-- <input -->
<!-- class="x" -->
<!-- type="range" -->
<!-- min="2" -->
<!-- max="200" -->
<!-- value="50" -->
<!-- step="1" -->
<!-- /> -->
<span class="y">Graph height: 30 (-15 .. 15)</span>
<input
class="y"
type="range"
min="2"
max="100"
value="30"
step="1"
/>
<button class="center">Center</button>
</div>
</body>
</html>