|
<!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; |
|
left: 0; |
|
width: 100vw; |
|
height: 110vh; |
|
border: none; |
|
} |
|
|
|
|
|
.mask-header { |
|
position: fixed; |
|
top: 0; |
|
left: 0; |
|
width: 100vw; |
|
height: 60px; |
|
background-color: white; |
|
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> |
|
|