Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -1
index.html
CHANGED
@@ -1,11 +1,27 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
<script type="module" crossorigin src="https://cdn.jsdelivr.net/npm/@gradio/lite@0.4.1/dist/lite.js"></script>
|
5 |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@gradio/lite@0.4.1/dist/lite.css" />
|
6 |
</head>
|
7 |
<body>
|
8 |
-
<h2>
|
|
|
|
|
|
|
9 |
<p>Try it out! Once the Gradio app loads (can take 10-15 seconds), disconnect your Wifi and the machine learning model will still work!</p>
|
10 |
<gradio-lite>
|
11 |
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap" >
|
5 |
+
<style>
|
6 |
+
body {
|
7 |
+
font-family: 'Roboto', sans-serif;
|
8 |
+
font-size: 16px;
|
9 |
+
}
|
10 |
+
.logo {
|
11 |
+
height: 1em;
|
12 |
+
vertical-align: middle;
|
13 |
+
margin-bottom: 0.1em;
|
14 |
+
}
|
15 |
+
</style>
|
16 |
+
|
17 |
<script type="module" crossorigin src="https://cdn.jsdelivr.net/npm/@gradio/lite@0.4.1/dist/lite.js"></script>
|
18 |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@gradio/lite@0.4.1/dist/lite.css" />
|
19 |
</head>
|
20 |
<body>
|
21 |
+
<h2>
|
22 |
+
<img src="lite-logo.png" alt="logo" class="logo">
|
23 |
+
Gradio-lite (Gradio running entirely in your browser!)
|
24 |
+
</h2>
|
25 |
<p>Try it out! Once the Gradio app loads (can take 10-15 seconds), disconnect your Wifi and the machine learning model will still work!</p>
|
26 |
<gradio-lite>
|
27 |
|