-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 2 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>Calculadora</title>
<script type="text/javascript" src="js/app.js"></script>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
</head>
<body onload='hideTotal();'>
<div class="container", id="title">
<h1 class="heading1 center"> Neonatal mortality prediction models </h1>
</div>
</body>
<div class="container">
<div class="col-md-4">
<div class="col-md-12 col-sm-4 col-xs-12"> <a href="pages/model1.html" class="btn btn-sm animated-button bio" ng-click="on_click_button(0)">Prenatal</a> </div>
</div>
<div class="col-md-4">
<div class="col-md-12 col-sm-4 col-xs-12"> <a href="pages/model2.html" class="btn btn-sm animated-button contact" ng-click="on_click_button(1)">First 24 hours</a> </div>
</div>
<div class="col-md-4">
<div class="col-md-12 col-sm-4 col-xs-12"> <a href="pages/model4.html" class="btn btn-sm animated-button projects" ng-click="on_click_button(2)">Estimation during hospital stay</a></div>
</div>
</div>
<div class="container">
<div class="col-md-4">
<legend align='center'>Mortality prediction with prenatal covariates. </legend>
</div>
<div class="col-md-4">
<legend align='center'>Mortality prediction during the first 24h of life. </legend>
</div>
<div class="col-md-4">
<legend align='center'>Mortality prediction during hospital stay.</legend>
<p> </p>
</div>
</div>
<footer>
<div class="container">
<div class="col-md-4">
</div>
<div class="col-md-4">
<a href="index_es.html" >Spanish version</a>
</div>
<div class="col-md-4">
</div>
</div>
</footer>
</html>