-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (58 loc) · 1.71 KB
/
index.html
File metadata and controls
81 lines (58 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Element Builder</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/theming.css">
<link rel="icon" type="image/png" href="icon.png">
</head>
<body>
<div id="MainContainer">
<div id="Header">
<h1>Element Builder</h1>
</div>
<div id="Left">
<div id="appLogo">
<img id="logo" src="images/logo.png" alt="logo" >
</div>
<div id="inputBoxes" class="row">
<span>
<input id="electron" class="card-slide" id="knock" type="number" placeholder="How many?" /><label id="knock" for="knock">Electrons</label>
</span>
<br>
<span>
<input id="proton" class="card-slide" id="max" type="number" placeholder="Fill Protons" /><label id="max" for="max">Protons</label>
</span>
<br>
<span>
<input id="neutron" class="card-slide" id="out" type="number" placeholder="How many?" /><label id="out" for="out">Neutrons</label>
</div>
<div id="buttons">
<div class='container'>
<button id="ebutton" class='pulse-button'>+</button>
</div>
<div class='container'>
<button id="pbutton" class='pulse-button'>+</button>
</div>
<div class='container'>
<button id="nbutton" class='pulse-button'>+</button>
</div>
</div>
<div id="submitdiv">
<button id="submit" value="submit">Submit</button>
</div>
<div id="resetdiv">
<button id="reset" value="Reload Page" onclick="window.location.reload()">Reset</button>
</div>
</div>
<div id="canvasframe">
<canvas id="canvas" width="650" height="550" style="background-color:#ffffff;"</canvas>
</div>
<div id="Result">
</div>
<script src="js/json.js"></script>
<script src="js/MainVariable.js"></script>
<script src="js/myscript.js"></script>
</div>
</body>
</html>