-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.html
executable file
·44 lines (44 loc) · 1.63 KB
/
data.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
<!DOCTYPE html>
<html>
<head>
<title>Passing Life - Data</title>
<link rel='shortcut icon' href='Media/favicon.ico' />
<script src='Scripts/jquery.js'></script>
<script src='Scripts/variables.js'></script>
<script src='Scripts/countryDict.js'></script>
<script src='Scripts/globalfunctions.js'></script>
<script src='Scripts/data-script.js'></script>
<link rel='stylesheet' type='text/css' href='Styles/data-style.css'>
<link rel="stylesheet" type="text/css" href="Styles/base-style.css">
<meta name='Description' content='Displays an accurate percentage of your life that has passed using nationality, age and gender.'>
</head>
<body onload''>
<div class='mainsection'>
<nav class='nav'>
<ul class="navitems">
<a class="navitem" href="index.html"><li>The Calculator</li></a>
<a class="navitem" href="customize.html"><li>Customize</li></a>
<a class="navitem" href="data.html"><li>Data</li></a>
</ul>
</nav>
<div class='center'>
<h3>Enter your country of birth and gender to view your life expectancy chart.<br /></h3>
<div id='formwrapper'>
<select id='country' onchange='dataChange(this)'>
<option value='NaN'>Country of Birth</option>
<optgroup label='Recommended Countries' id='recommendedgroup'>
</optgroup>
<optgroup label='Other Countries' id='normalgroup'>
</optgroup>
</select>
<br/>
<select id='sex' onchange='dataChange(this)'><!--Gender-->
<option value='NaN'>Sex</option>
<option value='0'>Male</option>
<option value='1'>Female</option>
</select>
</div>
<table id='learray'><td>Age</td><td>Life Expectancy</td></table>
</div>
</body>
</html>