-
Notifications
You must be signed in to change notification settings - Fork 1
/
anthro.html
32 lines (29 loc) · 1 KB
/
anthro.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
<!DOCTYPE html>
<html>
<head>
<!-- The stylesheet for this page -->
<link rel="stylesheet" type="text/css" href="anthro.css">
<!-- The jQuery library -->
<script type="text/javascript" src="jquery/jquery-1.7.2.min.js"></script>
<!-- The jQuery flot library for drawing graphs -->
<script type="text/javascript" src="flot/jquery.flot.min.js"></script>
<!-- The qtip2 library for nice and easy to use tool tips -->
<script type="text/javascript" src="qtip2/jquery.qtip.min.js"></script>
<!-- Our JavaScript code -->
<script type="text/javascript" src="anthro.js"></script>
</head>
<body>
<div id="measurements">
<table id="measurements_table"></table>
</div>
<div id="plot">
<p id="plot_header">Show data for:
<input type="radio" name="radio_data" />only women
<input type="radio" name="radio_data" />only men
<input type="radio" name="radio_data" checked />both women and men
</p>
<div id="plot_canvas"></div>
<p id="plot_footer"></p>
</div>
</body>
</html>