-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 721 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 721 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<script type="module" src="index.js"></script>
<div class="uicontainer">
<div class="buttoncontainer">
<div class="text_input"><input id="text_input"></input></div>
<div class="buttoncontainer_row_2">
x(0)=<input type="number" id="x_0_input" value="2"></input>
x'(0)=<input type="number" id="x_d_0_input" value="1"></input>
</div>
<div class="buttoncontainer_row_1">
<button id="button_set">Set</button>
<button id="button_play">Play</button>
</div>
</div>
</div>
</body>
</html>