Spaces:
Sleeping
Sleeping
Tolani Akinola
commited on
Commit
·
c05a0d8
1
Parent(s):
b6ff8db
Add Vercel static embed for Care Count demo
Browse files- index.html +21 -0
index.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<title>Care Count Demo</title>
|
| 7 |
+
<style>
|
| 8 |
+
html, body, iframe { height: 100%; margin: 0; padding: 0; border: 0; }
|
| 9 |
+
body { display: flex; }
|
| 10 |
+
iframe { flex: 1; width: 100%; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<!-- Replace with your live app URL -->
|
| 15 |
+
<iframe
|
| 16 |
+
src="https://huggingface.co/spaces/focustiki/care-count?embed=true"
|
| 17 |
+
allow="clipboard-read; clipboard-write; microphone; camera"
|
| 18 |
+
loading="eager">
|
| 19 |
+
</iframe>
|
| 20 |
+
</body>
|
| 21 |
+
</html>
|