DHEIVER commited on
Commit
d80efcd
·
verified ·
1 Parent(s): 36d7d59

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +41 -0
index.html ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0">
6
+ <title>Hugging Face App Integration</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background-color: #f5f5f5;
12
+ font-family: Arial, sans-serif;
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: center;
16
+ height: 100vh;
17
+ }
18
+ .iframe-container {
19
+ width: 90%;
20
+ height: 90%;
21
+ border: none;
22
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
23
+ border-radius: 12px;
24
+ overflow: hidden;
25
+ }
26
+ iframe {
27
+ width: 100%;
28
+ height: 100%;
29
+ border: none;
30
+ }
31
+ </style>
32
+ </head>
33
+ <body>
34
+ <div class="iframe-container">
35
+ <iframe
36
+ src="https://huggingface.co/spaces/DHEIVER/pdfchatbot?embed=true"
37
+ title="Hugging Face App">
38
+ </iframe>
39
+ </div>
40
+ </body>
41
+ </html>