-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (57 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> Vinny Truss Solver </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron text-center">
<h1>Vinny Truss Solver</h1>
<p>A truss solver</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<p id="formArea"></p>
<p id="Main">
<table style='width=100%'>
<tr>
<th>
<p id="nodes"></p>
</th>
<th>
<p id="membs"></p>
</th>
<th>
<p id="M"></p>
</th>
<th>
<p id="A"></p>
</th>
</tr>
</table>
</p>
<div id="managerArea">
<h4> Input Type </h4>
<input type="radio" id="Txt file"> Text File </input><br>
<input type="radio" id="Forms"> No Text File </input><br>
<input type="submit" id="manager" onclick="choosePath()"></input>
</div>
</div>
<div class="col-sm-4">
<br>
<canvas id="myCanvas"></canvas>
</center>
</div>
</div>
<script type="text/javascript" src="JS/arrayMethods.js"></script>
<script type="text/javascript" src="JS/manager.js"></script>
<script type="text/javascript" src="JS/numeric.js"></script>
<script type="text/javascript" src="JS/forms.js"></script>
<script type="text/javascript" src="JS/texts.js"></script>
</body>
</html>