-
Notifications
You must be signed in to change notification settings - Fork 0
/
qna.html
38 lines (34 loc) · 1.17 KB
/
qna.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="AI4A Lab: QnA; Questions & Answers">
<title>AI4A Lab: QnA</title>
<link rel="icon" type="image/x-icon" href="css/logo.png">
<link rel="stylesheet" href="css/styles_qna.css">
</head>
<body>
<div id="header">
<h1>AI4A Lab: QnA</h1>
</div>
<div class="main-container">
<div id="image-Container" class="container">
<!-- Image will be dynamically loaded here -->
</div>
<div class="right-container">
<div id="question-detail-Container" class="container">
Loading question details...
</div>
<div id="question-Container" class="container">
Loading question...
</div>
</div>
</div>
<div class="text-answer-container">
<textarea id="answerInput" placeholder="Write your answer here"></textarea>
</div>
<button id="submitButton">Submit</button>
<script src="js/script_qna.js"></script>
</body>
</html>