-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
30 lines (25 loc) · 744 Bytes
/
Copy pathIndex.html
File metadata and controls
30 lines (25 loc) · 744 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>AI Assistant</h1>
<p>Interact with our AI.</p>
</header>
<main>
<h2>Input</h2>
<textarea id="input-text" placeholder="Enter your query..."></textarea>
<button id="submit-button">Send Query</button>
<div id="output-area"></div> <!-- Where the AI's response will be displayed -->
</main>
<footer>
<p>© 2023 My AI App</p>
</footer>
<script src="script.js"></script>
</body>
</html>