http
HTTP/1.1 200 OK
Content-Type: text/html
Permissions-Policy: camera=(self), microphone=(self)
<!DOCTYPE html>
<html>
<head><title>Video Call</title></head>
<body>
<video id="preview" autoplay></video>
<script>
navigator.mediaDevices.getUserMedia({video: true, audio: true})
.then(stream => {
document.getElementById('preview').srcObject = stream;
});
</script>
</body>
</html>