Spaces:
Running
Running
Create index.html
Browse files- index.html +43 -0
index.html
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>CTM Research Agent</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div class="container">
|
| 11 |
+
<header>
|
| 12 |
+
<h1>CTM Research Agent</h1>
|
| 13 |
+
<p>Your AI-powered assistant for in-depth research and analysis.</p>
|
| 14 |
+
</header>
|
| 15 |
+
|
| 16 |
+
<main>
|
| 17 |
+
<div class="input-section">
|
| 18 |
+
<h2>Submit Your Research Query</h2>
|
| 19 |
+
<textarea id="researchQuery" placeholder="Enter your research topic here..."></textarea>
|
| 20 |
+
<button id="submitButton">Submit</button>
|
| 21 |
+
</div>
|
| 22 |
+
|
| 23 |
+
<div class="output-section">
|
| 24 |
+
<h2>Results</h2>
|
| 25 |
+
<div id="resultDisplay" class="result-container" contenteditable="true">
|
| 26 |
+
</div>
|
| 27 |
+
</div>
|
| 28 |
+
|
| 29 |
+
<div class="history-section">
|
| 30 |
+
<h2>Recent Research</h2>
|
| 31 |
+
<div id="historyContainer" class="history-container">
|
| 32 |
+
</div>
|
| 33 |
+
</div>
|
| 34 |
+
</main>
|
| 35 |
+
|
| 36 |
+
<footer>
|
| 37 |
+
<p>© 2025 CTM Research</p>
|
| 38 |
+
</footer>
|
| 39 |
+
</div>
|
| 40 |
+
|
| 41 |
+
<script src="script.js"></script>
|
| 42 |
+
</body>
|
| 43 |
+
</html>
|