17 lines
596 B
HTML
17 lines
596 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<title>Presentation — MPS</title>
|
|
<link rel="stylesheet" href="/css/styles.css" />
|
|
</head>
|
|
<body>
|
|
<!-- Chrome-free display: the presentation only, no header text and no controls.
|
|
It mirrors whatever the presenter console (the other tab) is showing. -->
|
|
<div class="display-stage" id="stage"></div>
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script type="module" src="/js/display.js"></script>
|
|
</body>
|
|
</html>
|