0% found this document useful (0 votes)
20 views2 pages

Index

Uploaded by

razikattar7
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views2 pages

Index

Uploaded by

razikattar7
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat with Aakash</title>
<style>
body { font-family: Arial, sans-serif; }
.chat-container { max-width: 600px; margin: auto; padding: 10px; border: 1px
solid #ccc; border-radius: 5px; }
.messages { height: 300px; overflow-y: scroll; border: 1px solid #ccc;
padding: 10px; border-radius: 5px; }
.message { margin: 5px 0; }
.message.user { text-align: right; }
.message.aakash { text-align: left; }
.input { margin-top: 10px; }
</style>
</head>
<body>
<div class="chat-container">
<div class="messages" id="messages"></div>
<div class="input">
<input type="text" id="userInput" placeholder="Type a message..." />
<button onclick="sendMessage()">Send</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>

You might also like