<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Rasa Chat Widget</title> <style> #chat-widget { position: fixed; bottom: 20px; right: 20px; width: 300px; height: 400px; border: 1px solid #ccc; border-radius: 5px; overflow: hidden; font-family: Arial, sans-serif; } #chat-header { background-color: #4CAF50; color: white; padding: 10px; text-align: center; } #chat-messages { height: 250px; overflow-y: auto; padding: 10px; } #user-input-container { display: flex; align-items: center; padding: 10px; } #user-input { flex: 1; margin-right: 10px; padding: 5px; box-sizing: border-box; } #send-button { padding: 10px; background-color: #4CAF50; color: white; border: none; cursor: pointer; } #chat-buttons { display: flex; justify-content: space-between; padding: 10px; } .chat-option-button { flex: 0 0 48%; padding: 10px; background-color: #4CAF50; color: white; border: none; cursor: pointer; } .page { display: none; flex-direction: column; align-items: center; } .back-button, .option-button { width: 100%; padding: 10px; background-color: #4CAF50; color: white; border: none; cursor: pointer; margin-top: 10px; } .no-chat { display: none; } </style> </head> <body> <div id="chat-widget"> <div id="chat-header">Chat with Virtual Assistant</div> <!-- New buttons for user options --> <div id="chat-buttons"> <button class="chat-option-button" onclick="showPage('applicant-page')">Applicant</button> <button class="chat-option-button" onclick="showPage('institution-page')">Institution</button> </div> <!-- Pages for Applicant and Institution --> <div id="applicant-page" class="page"> <p>Welcome, Applicant</p> <button class="option-button" onclick="showSubPage('applicant-option-1')">Option 1</button> <button class="option-button" onclick="showSubPage('applicant-option-2')">Option 2</button> <button class="option-button" onclick="showSubPage('applicant-option-3')">Option 3</button> <button class="back-button" onclick="backToMainMenu()">Back to Main Menu</button> </div> <div id="institution-page" class="page"> <p>Welcome, Institution</p> <button class="option-button" onclick="showSubPage('institution-option-1')">Option 1</button> <button class="option-button" onclick="showSubPage('institution-option-2')">Option 2</button> <button class="option-button" onclick="showSubPage('institution-option-3')">Option 3</button> <button class="back-button" onclick="backToMainMenu()">Back to Main Menu</button> </div> <!-- Subpages for Options --> <div id="applicant-option-1" class="page no-chat"> <p>Option 1 content</p> <button class="back-button" onclick="backToPage('applicant-page')">Back to Options</button> </div> <div id="applicant-option-2" class="page no-chat"> <p>Option 2 content</p> <button class="back-button" onclick="backToPage('applicant-page')">Back to Options</button> </div> <div id="applicant-option-3" class="page no-chat"> <p>Option 3 content</p> <button class="back-button" onclick="backToPage('applicant-page')">Back to Options</button> </div> <div id="institution-option-1" class="page no-chat"> <p> Option 1 content</p> <button class="back-button" onclick="backToPage('institution-page')">Back to Options</button> </div> <div id="institution-option-2" class="page no-chat"> <p>Option 2 content</p> <button class="back-button" onclick="backToPage('institution-page')">Back to Options</button> </div> <div id="institution-option-3" class="page no-chat"> <p>Option 3 content</p> <button class="back-button" onclick="backToPage('institution-page')">Back to Options</button> </div> <!-- Main chat messages --> <div id="chat-messages"></div> <div id="user-input-container"> <input type="text" id="user-input" placeholder="Type your message..."> <button id="send-button" onclick="sendMessage()">Send</button> </div> </div> <script> function showPage(pageId) { // Hide chat messages and main menu buttons document.getElementById('chat-messages').style.display = 'none'; document.getElementById('chat-buttons').style.display = 'none'; // Show the selected page document.getElementById(pageId).style.display = 'flex'; } function showSubPage(subPageId) { // Hide current page and show the selected subpage document.querySelectorAll('.page').forEach(page => page.style.display = 'none'); document.getElementById(subPageId).style.display = 'flex'; } function backToMainMenu() { // Hide pages and show chat messages and main menu buttons document.querySelectorAll('.page').forEach(page => page.style.display = 'none'); document.getElementById('chat-messages').style.display = 'block'; document.getElementById('chat-buttons').style.display = 'flex'; } function backToPage(pageId) { // Hide current subpage and show the main page document.querySelectorAll('.page').forEach(page => page.style.display = 'none'); document.getElementById(pageId).style.display = 'flex'; } function sendMessage() { const userInput = document.getElementById('user-input').value; const chatMessages = document.getElementById('chat-messages'); // Display user message chatMessages.innerHTML += `<div>User: ${userInput}</div>`; // Alert for demo purposes (Replace this with actual logic) alert(`User input: ${userInput}`); // Clear user input document.getElementById('user-input').value = ''; } </script> </body> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>