Update index.html
Browse files- index.html +12 -3
index.html
CHANGED
@@ -4,15 +4,24 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Sign Language Project Embed</title>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
</head>
|
8 |
<body>
|
9 |
<h1>Embedded Sign Language Project</h1>
|
10 |
|
11 |
<iframe
|
12 |
src="https://osheina-sign-language-project.hf.space"
|
13 |
-
frameborder="0"
|
14 |
-
width="100%"
|
15 |
-
height="600px"
|
16 |
allowfullscreen
|
17 |
></iframe>
|
18 |
</body>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Sign Language Project Embed</title>
|
7 |
+
<style>
|
8 |
+
html, body {
|
9 |
+
margin: 0;
|
10 |
+
padding: 0;
|
11 |
+
height: 100%;
|
12 |
+
}
|
13 |
+
iframe {
|
14 |
+
width: 100%;
|
15 |
+
height: 100%;
|
16 |
+
border: none;
|
17 |
+
}
|
18 |
+
</style>
|
19 |
</head>
|
20 |
<body>
|
21 |
<h1>Embedded Sign Language Project</h1>
|
22 |
|
23 |
<iframe
|
24 |
src="https://osheina-sign-language-project.hf.space"
|
|
|
|
|
|
|
25 |
allowfullscreen
|
26 |
></iframe>
|
27 |
</body>
|