-
Notifications
You must be signed in to change notification settings - Fork 1
/
areTherePositivePressureRooms.html
55 lines (49 loc) · 2.03 KB
/
areTherePositivePressureRooms.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
<html>
<head>
<title>Are There Positive Pressure Rooms</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<header>
<div class="container">
<div class="jumbotron header-banner">
<img src="images/nhs-logo.png" alt="NHS-Logo'">
<h1>NHS Covid-19/SARS-CoV2 PPE Guidance</h1>
</div>
</div>
</header>
<body>
<h1>Are there any <font color="green">positive pressure rooms</font> on your ward?</h1>
<br>
<div class="col-sm-12 text-center">
<button id="yesPositivePressure" class="btn btn-primary btn-lg submit-button">Yes</button>
<button id="noPositivePressure" class="btn btn-primary btn-lg submit-button">No</button>
<script type="text/javascript">
document.getElementById("yesPositivePressure").onclick = function () {
location.href = "scenarioThreeVideoPage.html";
};
document.getElementById("noPositivePressure").onclick = function () {
location.href = "scenarioTwoVideoPage.html";
};
</script>
<br>
<br>
<font color="green">Positive pressure room</font>: a room where the air-conditioning <i>blows</i> air from the room into the corridor.
<br>
<br>
<a href="index.html">Return to start</a><br><br>
</div>
<p> </p><p> <p> </p><div class="footer date-time-format">
<b class= "footer-checkbox steps"> 🗹 </b>This website has been checked as of <b class="date-time-format" id="date"></b> <b>by Dr Matt Butler, CUH NHS FT</b> and remains reflective of the latest PHE guidance with respect to PPE
</div>
</div>
<script>
var d = new Date();
document.getElementById("date").innerHTML = d;
</script>
</body>
</html>