info343/lectures/intro-to-ajax/files/quote.html

<!-- 
quote.html
HTML file for "Quote of the Day" Ajax lecture example
(Originally from CSE 190 M, Marty Stepp)
INFO 343, Autumn 2012
Morgan Doocy
-->

<!DOCTYPE html>

<html>
   <head>
      <meta charset="utf-8">
      
      <title>Quote of the Day</title>
      
      <link rel="stylesheet" type="text/css" href="//info343.ischool.uw.edu/lectures/intro-to-ajax/quote.css">
      
      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
      <script type="text/javascript" src="quote.js"></script>
   </head>
   
   <body>
      
      <h1>INFO 343 Quote of the Day</h1>
      
      <p id="quote"><!-- inject quote here! --></p>
      
      <div><button id="fetch">Fetch new quote!</button></div>
   </body>
</html>