Spaces:
Sleeping
Sleeping
TintinMeimei
commited on
Commit
•
cab04fe
1
Parent(s):
6e4d27e
Update static/index.html
Browse files- static/index.html +27 -15
static/index.html
CHANGED
@@ -1,15 +1,27 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
<
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
<
|
13 |
-
|
14 |
-
|
15 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Have Fun with Cool AI!</title>
|
7 |
+
<link rel="stylesheet" href="style.css" />
|
8 |
+
<script type="module" src="script.js"></script>
|
9 |
+
</head>
|
10 |
+
<body>
|
11 |
+
<main>
|
12 |
+
<section id="text-gen">
|
13 |
+
<h1>Have Fun with Cool AI!</h1>
|
14 |
+
<form class="text-gen-form">
|
15 |
+
<label for="text-gen-input">Text prompt</label>
|
16 |
+
<input
|
17 |
+
id="text-gen-input"
|
18 |
+
type="text"
|
19 |
+
value="Translate this sentence to French: I can speak Chinese"
|
20 |
+
/>
|
21 |
+
<button id="text-gen-submit">Submit</button>
|
22 |
+
<p class="text-gen-output"></p>
|
23 |
+
</form>
|
24 |
+
</section>
|
25 |
+
</main>
|
26 |
+
</body>
|
27 |
+
</html>
|