Seraph19 commited on
Commit
af0b21e
1 Parent(s): 45ab0d3

Create HTML

Browse files
Files changed (1) hide show
  1. HTML +29 -0
HTML ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Your Space</title>
7
+ <style>
8
+ body {
9
+ display: flex;
10
+ justify-content: center;
11
+ align-items: center;
12
+ height: 100vh;
13
+ margin: 0;
14
+ }
15
+ iframe {
16
+ width: 80%; /* Adjust the width as needed */
17
+ height: 80vh; /* Adjust the height as needed */
18
+ border: 1px solid #ccc; /* Optional styling */
19
+ }
20
+ </style>
21
+ </head>
22
+ <body>
23
+ <iframe src="https://kingnish-opengpt-4o.hf.space"
24
+ title="Embedded Hugging Face Space"
25
+ frameborder="0">
26
+ Your browser does not support iframes.
27
+ </iframe>
28
+ </body>
29
+ </html>