Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<!DOCTYPE html> | |
<html lang="en" > | |
<head> | |
<meta charset="UTF-8"> | |
<title>Chatbot</title> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<form id="chatForm"> | |
<div id="chatbot"> | |
<div id="chat"> | |
<div class="header"> | |
<h1>HAL 9000, your friendly chatbot</h1> | |
</div> | |
<div class="chat-input"> | |
<input id="chatInput" /> | |
</div> | |
<div id="dave" class="chat-pane"></div> | |
<div id="hal" class="chat-pane"></div> | |
</div> | |
</div> | |
</form> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |