-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 910 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Smellmaster 5000</title>
<meta charset="UTF-8" />
<script src="./hls.min.js"></script>
<link rel="stylesheet" href="./style.css">
<link href="https://use.typekit.net/ywa3nug.css" rel="stylesheet">
<link href="./favicon.ico" rel="shortcut icon" type="image/ico">
</head>
<body>
<div id="logo-wrapper"><img id="logo" src="logo-white.png"><h1>Smellmaster 5000</h1></div>
<div><video id="smell" height="576"></video></div>
<div id="button-wrapper">
<div><button onclick="connectToSmellmaster()">Connect!</button></div>
<div><button onclick="playVideo()">Play Video!</button></div>
</div>
<div id="footer-wrapper"><p id="footer-text">Presented at Demuxed 2021. <a href="https://github.com/demuxed/smellmaster5000">Check out the code on Github</a>.</p></div>
<script src="./index.js"></script>
</body>
</html>