forked from tushargupta1504/Medical-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add chatbot functionality to index.html
- Loading branch information
1 parent
9095f74
commit fc950d0
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<!-- Coding By CodingNepal - www.codingnepalweb.com --> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>MedicalBot</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<!-- Google Fonts Link For Icons --> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" /> | ||
<script src="script.js" defer></script> | ||
</head> | ||
<body> | ||
<button class="chatbot-toggler"> | ||
<span class="material-symbols-rounded">mode_comment</span> | ||
<span class="material-symbols-outlined">close</span> | ||
</button> | ||
<div class="chatbot"> | ||
<header> | ||
<h2>Chatbot</h2> | ||
<span class="close-btn material-symbols-outlined">close</span> | ||
</header> | ||
<ul class="chatbox"> | ||
<li class="chat incoming"> | ||
<span class="material-symbols-outlined">smart_toy</span> | ||
<p>Hi there <br>How can I help you today?</p> | ||
</li> | ||
</ul> | ||
<div class="chat-input"> | ||
<textarea placeholder="Enter a message..." spellcheck="false" required></textarea> | ||
<span id="send-btn" class="material-symbols-rounded">send</span> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |