website / index.html
wop's picture
Update index.html
b2e38fe verified
Raw
History Blame Contribute Delete
700 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bench Labs</title>
<style>
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}
</style>
</head>
<body>
<iframe
src="https://bench-labs.web.app/"
title="Bench Labs"
allowfullscreen>
</iframe>
</body>
</html>