Added SoftwareDevChatbot
This commit is contained in:
25
SoftwareDevChatbot/public/index.html
Normal file
25
SoftwareDevChatbot/public/index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Software Dev Chatbot</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="main-container">
|
||||
<div class="chat-container">
|
||||
<div class="header">
|
||||
<img src="chat.png" alt="Logo" class="logo">
|
||||
<h2 class="name">Chat Window</h2>
|
||||
</div>
|
||||
<div class="chat-log" id="chat-log"></div>
|
||||
<div class="input-container">
|
||||
<input type="text" id="user-input" placeholder="Ask me anything...">
|
||||
<button onclick="sendMessage()">Send</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user