-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
41 lines (41 loc) · 1.24 KB
/
app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Presentation-Tool</title>
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<section class="notes">
<div class="warning">
<strong>
This window must be in the foreground during the entire presentation!
</strong>
<ol>
<li>Move window to the proper position.</li>
<li>Start full screen mode with F11.</li>
<li>Click inside the window once.</li>
</ol>
</div>
<div class="warning">
Another checklist:
<ol>
<li>The laptop's sound should be muted.</li>
<li>The mouse should be in a non-visible corner.</li>
</ol>
</div>
</section>
<section class="actions">
<ul>
<li><a href="controller" id="controller">Join as Controller</a></li>
<li><a href="slides_left">Show left Slides</a></li>
<li><a href="slides_right">Show right Slides</a></li>
</ul>
</section>
</body>
</html>