TintinMeimei commited on
Commit
cab04fe
1 Parent(s): 6e4d27e

Update static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +27 -15
static/index.html CHANGED
@@ -1,15 +1,27 @@
1
- <main>
2
- <section id="text-gen">
3
- <h2>Have fun with Cool AI!</h2>
4
- <form class="text-gen-form">
5
- <label for="text-gen-input">Text prompt</label>
6
- <input
7
- id="text-gen-input"
8
- type="text"
9
- value="Translate this sentence to French. Sentence: I can speak Chinese."
10
- />
11
- <button id="text-gen-submit">Submit</button>
12
- <p class="text-gen-output"></p>
13
- </form>
14
- </section>
15
- </main>
 
 
 
 
 
 
 
 
 
 
 
 
 
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>