-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreference_densities.html
102 lines (77 loc) · 2.72 KB
/
reference_densities.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
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Material Densities</title>
<link rel="shortcut icon" type="image/png" href="../favicon.png" />
<link rel="apple-touch-icon-precomposed" href="../apple-touch-icon-60x60.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../apple-touch-icon-76x76.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../apple-touch-icon-152x152.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../apple-touch-icon-120x120.png">
<meta content="width=device-width, minimum-scale=1, maximum-scale=1" name="viewport">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="script/mdj.math.library.js"></script>
<script type="text/javascript">$(document).bind("mobileinit", function () {$.mobile.ajaxEnabled = false;});</script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<!-- ###################
##### PAGE #####
################### -->
<div data-role="page" id="density_page">
<script>
LoadNavPanel("#density_page");
</script>
<div data-role="panel" id="navpanel" class="navpanel" data-display="reveal" data-position="left">
</div> <!-- Panel -->
<div data-role="header" data-position="fixed" data-theme="b">
<a href="#navpanel" data-role="button" data-icon="bars" data-iconpos="notext">Navigation</a>
<h1>Constants</h1>
</div><!-- /header -->
<div data-role="content" class="content">
<ul data-role="listview" data-filter="true">
<li>Material:
<p class="ui-li-aside">
density
</p>
</li>
<li>Speed of Light (in vacuum), <em>c<sub>0</sub></em>:
<p class="ui-li-aside">
2.998 x 10<sup>8</sup> m/s
</p>
</li>
<li>Speed of Light (in vacuum), <em>c<sub>0</sub></em>:
<p class="ui-li-aside">
2.998 x 10<sup>8</sup> m/s
</p>
</li>
</ul>
<table data-role="table" id="my-table" data-mode="reflow">
<thead>
<tr>
<th>Material</th>
<th>lbs/ft<sup>3</sup></th>
<th>lbs/in<sup>3</sup></th>
<th>kg/m<sup>3</sup></th>
</tr>
</thead>
<tbody>
<tr>
<th>Stuff</th>
<td>144</td>
<td>12</td>
<td>2</td>
</tr>
</tbody>
</table>
</div><!-- /content -->
<!-- ##### Footer ##### -->
<div data-role="footer" data-position="fixed" data-theme="b">
<div data-role="controlgroup" data-type="horizontal" align="center">
<a href="disclaimer.html" data-role="button" data-rel="dialog">Disclaimer</a>
</div>
</div> <!-- Footer -->
</div> <!-- Page -->
</body>
</html>