-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.69 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 1.69 KB
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
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CNN</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/6.6.1/math.js" integrity="sha256-fXIclevwFTnEkaXhE65/RuJ6Ksdm1j4W2Zhvu1rKMJk=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/p5@1.0.0/lib/p5.js"></script>
<script src="sketch.js"></script>
<style>
input {
margin-top: 5px;
}
</style>
</head>
<body style="
display: flex;
align-items: center;
justify-content: flex-end;
flex-direction: column;
">
<div style="display: flex;" id="canvas-holder"></div>
<div style="margin-top: 15px;">
<form id="inputField" role="form">
<input type="text" name="field1" size="3">
<input type="text" name="field2" size="3">
<input type="text" name="field3" size="3">
<br>
<input type="text" name="field4" size="3">
<input type="text" name="field5" size="3">
<input type="text" name="field6" size="3">
<br>
<input type="text" name="field7" size="3">
<input type="text" name="field8" size="3">
<input type="text" name="field9" size="3">
<br>
</form>
</div>
<div id="applyButton">
<input type="button" onclick="applyClick()" value="Apply" name="Apply" class="btn btn-primary">
</div>
<div id="spinner" class="spinner-border text-primary" style="display: none; margin-top: 10px;" role="status">
<span class="sr-only">Loading...</span>
</div>
</body>
</html>