DmitrMakeev commited on
Commit
938f191
1 Parent(s): cff786e

Create templates/index.html

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