ABBHISHEK commited on
Commit
0dba753
·
verified ·
1 Parent(s): 90e07fd

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +51 -18
index.html CHANGED
@@ -1,19 +1,52 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>Quill</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ margin: 0;
11
+ padding: 0;
12
+ display: flex;
13
+ height: 100vh;
14
+ align-items: center;
15
+ justify-content: center;
16
+ background-color: #2c8d5d;
17
+ }
18
+ .container {
19
+ display: flex;
20
+ width: 80%;
21
+ height: 80%;
22
+ }
23
+ .left, .right {
24
+ flex: 1;
25
+ padding: 20px;
26
+ box-sizing: border-box;
27
+ }
28
+ textarea {
29
+ width: 100%;
30
+ height: 100%;
31
+ border: none;
32
+ resize: none;
33
+ padding: 10px;
34
+ box-sizing: border-box;
35
+ font-size: 16px;
36
+ }
37
+ </style>
38
+ </head>
39
+ <body>
40
+ <div class="container">
41
+ <div class="left">
42
+ <form action="/" method="post">
43
+ <textarea name="question" placeholder="Ask your question..."></textarea>
44
+ <button type="submit">Submit</button>
45
+ </form>
46
+ </div>
47
+ <div class="right">
48
+ <textarea name="answer" placeholder="Answer will appear here..." readonly></textarea>
49
+ </div>
50
+ </div>
51
+ </body>
52
  </html>