<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<!--
Mini-lab 13: Twitter Search
INFO 343 Autumn 2012
Morgan Doocy
-->
<head>
<title>Mini-lab 13</title>
<style type="text/css">
body {
font: 100%/1.2 "Lucida Grande", "Lucida Sans Unicode", sans-serif;
}
input, button {
font-size: 150%;
}
fieldset {
width: 18em;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="minilab13.js"></script>
</head>
<body>
<h1>Mini-lab 13</h1>
<fieldset>
<legend>Twitter Search</legend>
<input type="text" id="query"><br>
<button id="fetch">List Tweets</button>
</fieldset>
<ul id="output"></ul>
</body>
</html>