votetrainsite/Public/index.html

23 lines
652 B
HTML
Raw Normal View History

2020-11-30 15:24:45 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Flag Waver</title>
<script src="https://cdn.bootcss.com/flv.js/1.5.0/flv.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="video-wrapper">
<video id="videoElement" style="text-align: center; width:100%; display:none;" controls></video>
</div>
<div class="button-wrapper">
<button id="start-cam" onclick="runVid()">Play</button>
</div>
<div class="button-wrapper">
<button onclick="wave()" id="wave">Press!</button>
</div>
</body>
</html>