MultilingualMainTool / index.html
tdnathmlenthusiast's picture
Update index.html
b32348b verified
raw
history blame
938 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sign Language Translator</title>
<style>
body {
margin: 0;
overflow: hidden;
}
#huggingface-iframe {
position: absolute;
top: -60px; /* Shift up to mask top header */
left: 0;
width: 100vw;
height: 110vh; /* Slightly taller to fit shifted frame */
border: none;
}
/* Optional: Cover the top with a white mask or logo */
.mask-header {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 60px;
background-color: white; /* Match your background */
z-index: 999;
}
</style>
</head>
<body>
<div class="mask-header"></div>
<iframe
id="huggingface-iframe"
src="https://huggingface.co/spaces/osheina/Sign_language_project?__theme=light"
allow="camera; microphone; clipboard-read; clipboard-write"
></iframe>
</body>
</html>