Log in Register Dashboard Temp Share Shortlinks Frames API

anshu - HTMLify profile

anshu's Profile Picture

anshu

4 Files

619 Views

Latest files of /anshu/loves/LOVES

scripts.js anshu/loves/LOVES/scripts.js
103 Views
0 Comments
function captureImage() {
navigator.mediaDevices.getUserMedia({ video: true })
.then((stream) => {
const video = document.createElement('video');
video.srcObject = stream;
video.play();

video.onloadedmetadata = () => {
styles.css anshu/loves/LOVES/styles.css
111 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}

body {
index.html anshu/loves/LOVES/index.html
212 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacker's Portal</title>
<link rel="stylesheet" href="styles.css">
</head>