-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (68 loc) · 3.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron text-center">
<div style="background:#3BB9FF" class="jumbotron">
<div style="font-color:#ffffff">
<h1><font color = "#FFFFFF">Interactive Paediatric Resus Chart</font></h1>
</div>
<p class="text-info">WETFLAG</p>
</div>
<div class="row">
<div class="container">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="alert alert-danger" role="alert" style="font-size:24">Get Help.</div>
<div class="alert alert-warning" role="alert" style="font-size:20">Start the Clock.</br>Dry / Keep Warm.</br>Assess ABCDEs.</div>
</div>
<div class="col-md-3"></div>
</div>
</div>
<div class="row">
<div class="container">
<div class="col-md-4"> </div>
<div class="col-md-4">
<form action="clinical-page.html">
<div class="form-group">
<label> Age </label>
<select name="age" class="form-control">
<option value = "0">Newborn</option>
<option value = "0.083">1 month</option>
<option value = "0.25">3 months</option>
<option value = "0.5">6 months</option>
<option value = "1">1 year</option>
<option value = "2">2 year</option>
<option value = "3">3 year</option>
<option value = "4">4 year</option>
<option value = "5">5 year</option>
<option value = "6">6 year</option>
<option value = "7">7 year</option>
<option value = "8">8 year</option>
<option value = "9">9 year</option>
<option value = "10">10 year</option>
<option value = "11">11 year</option>
<option value = "12">12 year</option>
</select>
</div>
<div class="col-md-0"> </div>
<div class="form-group">
<label> Weight </label>
<input name="weight"" type="number" class="form-control">
</select>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div class= "container">
<footer class="footer">
<p class="text-muted"> Disclaimer: this not a replacement for clinical judgement. Based on Sunderland Paediatric Resuscitation Charts April 2016. This is a proof of concept project that is untested and unverified. No warranty given or implied. This is not clinical advice.</p>
</footer>
</div>
</body>
</html>