Upload index.html
Browse files- index.html +51 -18
index.html
CHANGED
@@ -1,19 +1,52 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|