DmitrMakeev commited on
Commit
4cc0d07
1 Parent(s): a9a3f3b

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +36 -0
index.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Веб-интерфейс для модели</title>
5
+
6
+
7
+ <style>
8
+ /* Ваш пользовательский CSS-код */
9
+ body {
10
+ background-color: white;
11
+ }
12
+ #myDiv {
13
+ background-color: white;
14
+ }
15
+ </style>
16
+ </head>
17
+ <body>
18
+
19
+
20
+ <div id="myDiv">
21
+
22
+
23
+ <iframe
24
+ src="https://darkstorm2150-stable-diffusion-protogen-x3-4-webui.hf.space"
25
+ frameborder="0"
26
+ width="100%"
27
+ height="550"
28
+ ></iframe>
29
+
30
+
31
+
32
+ </div>
33
+
34
+
35
+ </body>
36
+ </html>