-
Notifications
You must be signed in to change notification settings - Fork 1
/
scenarioFourVideoPage.html
102 lines (80 loc) · 2.66 KB
/
scenarioFourVideoPage.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<html>
<head>
<title>Scenario 4: Primary Care (GPs)</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>
<nav class="navbar navbar-inverse">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">NHS Covid-19/SARS-CoV2 PPE Guidance</a>
</div>
</nav>
<body>
<h1>Scenario 4 Video:</h1>
<h1>Primary Care (GPs)</h1>
<a name="iframe"></a>
<div class="col-sm-12 text-center">
<div id="player"></div>
<script>var videoId = 'j3hfEpjAx0E'</script>
<script src="js/video.js"></script>
</div>
<div class="col-sm-12 text-center">
<br></br>
<a href="index.html">Return to start</a><br><br>
</div>
<ol class="steps">
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(24);">Wash hands</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(33);">Don a plastic apron</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(45);">Put on a fluid resistant surgical face mask</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(70);">Put on eye protection</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(121);">Remove gloves</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(146);">Remove apron safely</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(162);">Leave room safely</a>
</li>
<li
class="Mustache"
>
<a href="#iframe" onclick="seekTo(168);">Remove eye protection safely</a>
</li>
</ol>
<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>