ruchi commited on
Commit ·
fa02667
1
Parent(s): fce0fda
Add js file
Browse files- index.html +2 -1
index.html
CHANGED
|
@@ -5,6 +5,7 @@
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>Chatbot</title>
|
| 7 |
<link rel="stylesheet" href="style.css">
|
|
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div class="header">
|
|
@@ -15,6 +16,6 @@
|
|
| 15 |
<input type="text" id="user-input" placeholder="Type your message...">
|
| 16 |
<button id="send-btn" onclick="sendMessage()">Send</button>
|
| 17 |
</div>
|
| 18 |
-
|
| 19 |
</body>
|
| 20 |
</html>
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>Chatbot</title>
|
| 7 |
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script type="module" src="index.js"></script>
|
| 9 |
</head>
|
| 10 |
<body>
|
| 11 |
<div class="header">
|
|
|
|
| 16 |
<input type="text" id="user-input" placeholder="Type your message...">
|
| 17 |
<button id="send-btn" onclick="sendMessage()">Send</button>
|
| 18 |
</div>
|
| 19 |
+
|
| 20 |
</body>
|
| 21 |
</html>
|