screen_recorder/src/index.html
2020-04-11 18:51:19 +02:00

27 lines
794 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>📹 Screen Recorder</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<h1>📹 Screen Recorder</h1>
<video src=""></video>
<div>
<button id="startBtn" class="btn btn-primary">Start</button>
<button id="stopBtn" class="btn btn-warning">Stop</button>
<button id="videoSelectBtn" class="btn btn-outline-primary">
Video source
</button>
</div>
<script defer src="render.js"></script>
</body>
</html>