Spaces:
Runtime error
Runtime error
index
Browse files- templates/index.html +17 -0
templates/index.html
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Text Summarization</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
margin: 40px;
|
11 |
+
padding: 20px;
|
12 |
+
background-color: #f9f9f9;
|
13 |
+
}
|
14 |
+
textarea {
|
15 |
+
width: 100%;
|
16 |
+
height: 200px;
|
17 |
+
padding
|