Spaces:
Runtime error
Runtime error
epochs-demos
commited on
Commit
·
86818cc
1
Parent(s):
1ef6a67
Create custom.html
Browse files- custom.html +22 -0
custom.html
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<style>
|
5 |
+
/* Modify the styles according to your preferences */
|
6 |
+
.gradio-interface-container {
|
7 |
+
text-align: center;
|
8 |
+
}
|
9 |
+
|
10 |
+
.gradio-input-container {
|
11 |
+
margin-bottom: 20px;
|
12 |
+
}
|
13 |
+
|
14 |
+
.gradio-output-container {
|
15 |
+
margin-top: 20px;
|
16 |
+
}
|
17 |
+
</style>
|
18 |
+
</head>
|
19 |
+
<body>
|
20 |
+
{{interface_html}}
|
21 |
+
</body>
|
22 |
+
</html>
|