Spaces:
Running
Running
ehristoforu
commited on
Update index.html
Browse files- index.html +66 -17
index.html
CHANGED
@@ -1,19 +1,68 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
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>Stable Diffusion - Rensor</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: 'Arial', sans-serif;
|
10 |
+
margin: 40px;
|
11 |
+
padding: 20px;
|
12 |
+
background-color: #f4f4f4;
|
13 |
+
color: #333;
|
14 |
+
}
|
15 |
+
|
16 |
+
h1, h2 {
|
17 |
+
color: #008080;
|
18 |
+
}
|
19 |
+
|
20 |
+
p {
|
21 |
+
line-height: 1.5;
|
22 |
+
}
|
23 |
+
|
24 |
+
img {
|
25 |
+
max-width: 100%;
|
26 |
+
height: auto;
|
27 |
+
}
|
28 |
+
|
29 |
+
.advantages {
|
30 |
+
margin-top: 20px;
|
31 |
+
}
|
32 |
+
|
33 |
+
.installation-instructions {
|
34 |
+
margin-top: 20px;
|
35 |
+
}
|
36 |
+
</style>
|
37 |
+
</head>
|
38 |
+
<body>
|
39 |
+
<h1>Stable Diffusion - Rensor</h1>
|
40 |
+
|
41 |
+
<img src="assets/favicon.png" alt="Stable Diffusion - Rensor Image">
|
42 |
+
|
43 |
+
<div class="advantages">
|
44 |
+
<h2>Advantages:</h2>
|
45 |
+
<ul>
|
46 |
+
<li>Very speed inference</li>
|
47 |
+
<li>Minimalist & user-friendly interface</li>
|
48 |
+
<li>Local install</li>
|
49 |
+
</ul>
|
50 |
+
</div>
|
51 |
+
|
52 |
+
<div class="installation-instructions">
|
53 |
+
<h2>Installation Instructions:</h2>
|
54 |
+
<ol>
|
55 |
+
<li>Download the Stable Diffusion - Rensor package from the official website.</li>
|
56 |
+
<li>Extract the downloaded archive to your preferred directory.</li>
|
57 |
+
<li>Navigate to the extracted directory using the command line.</li>
|
58 |
+
<li>Run the command: <code>python setup.py install</code></li>
|
59 |
+
<li>Ensure that all dependencies are installed by running: <code>pip install -r requirements.txt</code></li>
|
60 |
+
<li>Configure the settings in the configuration file (if applicable).</li>
|
61 |
+
<li>Start the application by running: <code>python main.py</code></li>
|
62 |
+
<li>Access the application through your web browser at <code>http://localhost:8000</code>.</li>
|
63 |
+
<li>Follow on-screen instructions to complete the setup.</li>
|
64 |
+
<li>Enjoy using Stable Diffusion - Rensor!</li>
|
65 |
+
</ol>
|
66 |
+
</div>
|
67 |
+
</body>
|
68 |
</html>
|