Last active
August 29, 2015 14:02
-
-
Save rcmiller/9a6214c2409092145cf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Chatzilla</title> | |
</head> | |
<body> | |
<div id='container'> | |
<h1>Chatzilla</h1> | |
<div id='history'> | |
<span class='username'>Alice</span>: Hi!<br> | |
<span class='username'>Bob</span>: Hola!<br> | |
</div> | |
<textarea id="new-message"></textarea> | |
<button id='send'>Send</button> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment