Skip to content

Commit f14fec9

Browse files
authored
Create index.html
1 parent d374351 commit f14fec9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

index.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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>GPTChat API Integration</title>
7+
<link rel="stylesheet" href="style.css">
8+
<script src="script.js" defer></script>
9+
</head>
10+
<body>
11+
<div class="chat-container">
12+
<div id="chat-output" class="chat-output"></div>
13+
<form id="chat-form" class="chat-input-form">
14+
<input type="text" id="chat-input" class="chat-input" placeholder="Type your message here" autocomplete="off">
15+
<button type="submit" class="chat-submit">Send</button>
16+
</form>
17+
</div>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)