Skip to content

Instantly share code, notes, and snippets.

@davidpadbury
Created February 12, 2011 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidpadbury/823862 to your computer and use it in GitHub Desktop.
Save davidpadbury/823862 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>NYC CodeCamp Chat</title>
<style>
html, body { margin: 0; padding: 0; }
#msgs {
clear: both;
}
</style>
</head>
<body>
<form>
<input id="msg" />
<input type="submit" value="send" />
<div id="connected">2 client(s) connected</div>
</form>
<div id="msgs">
<ul>
<li>Message 1</li>
<li>Message 2</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment