Commit
·
3b66ee0
1
Parent(s):
86df724
Create templates/index.html
Browse files- templates/index.html +36 -0
templates/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>
|