File size: 924 Bytes
b32348b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537fae6
b32348b
 
 
0b1ae9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!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"
    allow="camera; microphone; clipboard-read; clipboard-write"
  ></iframe>
</body>
</html>