Creating a simple chatbot using HTML, CSS, and JavaScript involves a few steps. Below, I've provided a basic structure for a chatbot that can take user input, and respond with predefined answers. This example won't have any advanced AI capabilities but will give you a good starting point to build upon.
### HTML (index.html)
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"


