notes/App for Talking to the Deaf-8zwRLEBE.php.html
<html>
<head>
	<style>
	#output, #bt_send{
		font-size:75px;
	}
	</style>
	<script src="jquery-1.10.1.min.js"></script>
	<script>
		$(document).ready(function(){
			setInterval(function(){
				$.get("read.php", function(msg){
					$("#output").html(msg);
				});
			},3000);

			$('#bt_send').click(function(){
				msg=$('#msgbx').val();
				$('#msgbx').val('');
				$('#output').html(msg);
				$.get('send.php', { msg: msg});
			});
		});
	</script>
</head>

<body>
	<div id='output'>
	<?php include('read.php');?>
	</div>
	<textarea id='msgbx' rows='4' cols='50'></textarea><br>
	<button id='bt_send'>Send</button>
</body>

</html>

syntax highlighted by Code2HTML, v. 0.9.1