-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsandbox.html
92 lines (68 loc) · 4.05 KB
/
sandbox.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<title>About the Adaptive Map Viewer</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="js/d3jsTree.js"></script>
</head>
<body id="struct">
<div id="wrapper">
<div id="header">
<div id="headerlogo">
<img alt="Adaptive Map Logo" height="77" src="icons/titleicon.png" width="300">
</div>
<div id="headercourse">
<h2>Engineering Statics</h2>
</div>
</div>
<div id="navmenu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
<li><a href="content.html">Content Pages</a></li>
<li><a href="contributing.html">Contributing</a></li>
<li><a href="troubleshooting.html">Troubleshooting</a></li>
</ul>
</div>
<div id="maincontent">
<div id="sidemenu">
<ul>
<li id="mechnav"><a href="#">Mechanics Basics</a></li>
<li id="vecnav"><a href="#">Vector and Matrix Math</a></li>
<li id="mominav"><a href="#">Moment Integrals</a></li>
<li id="Forcenav"><a href="#">Forces</a></li>
<li id="momnav"><a href="#">Moments</a></li>
<li id="stateqnav"><a href="#">Static Equilibrium</a></li>
<li id="stateqsysnav"><a href="#">Statically Equivalent Systems</a></li>
<li id="structnav"><a href="#" >Structures</a></li>
<li id="fricnav"><a href="#">Friction and Friction Applications</a></li>
</ul>
</div>
<div id="tree-container"></div>
<div id="tooltip"></div>
</div>
<div id="footer">
<table>
<tr>
<td style="width:200px"><img alt="Creative Commons Icon" height="31" src="icons/cc_icon.png" width="88"></td>
<td style="width:200px"><img alt="GNU Icon" height="98" src="icons/GNU_logo.jpg" width="100"></td>
<td style="width:200px"><img alt="NSF Icon" height="100" src="icons/NSF_Logo.jpg" width="100"></td>
</tr>
<tr>
<td style="width:200px">
Author: <a href="http://www.personal.psu.edu/jpm46/">Dr. Jacob Moore</a> has licensed the content, including the webpages and the concept map, under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/"> Creative Commons Attribution-NonCommercial 3.0 Unported License</a>.
</td>
<td style="width:200px">
Software Developers: Nathanael Bice, Lauren Gibboney, Joseph Luke, James McIntyre, John Nein, Tucker Noia, Michel Pascale, Joshua Rush, and Shawn Shroyer have licenced this software under a <a href="http://www.gnu.org/licenses/quick-guide-gplv3.html">GNU General Public License, version 3</a>.
</td>
<td style="width:200px">
This work was partially supported by the U.S. National Science Foundation Award # TUES-1044790. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author and do not necessarily reflect the views of the National Science Foundation.
</td>
</tr>
</table>
</div>
</div>
</body>
</html>