Spaces:
Sleeping
Sleeping
Update index.html
Browse files- index.html +19 -0
index.html
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<main>
|
| 2 |
+
<section id="text-gen">
|
| 3 |
+
<h2>Turner Ml Sentiment Analyser</h2>
|
| 4 |
+
<form class="text-gen-form">
|
| 5 |
+
<label for="text-gen-input">Text</label>
|
| 6 |
+
<input
|
| 7 |
+
id="text-gen-input"
|
| 8 |
+
type="text"
|
| 9 |
+
value="text"
|
| 10 |
+
name="text"
|
| 11 |
+
required
|
| 12 |
+
/>
|
| 13 |
+
<label for="rating-input">Rating</label>
|
| 14 |
+
<input type="number" id="rating-input" name="rating" />
|
| 15 |
+
<button id="text-gen-submit">Submit</button>
|
| 16 |
+
<p class="text-gen-output"></p>
|
| 17 |
+
</form>
|
| 18 |
+
</section>
|
| 19 |
+
</main>
|