info343/labs/9/solution/busmap.html

<!DOCTYPE html>
<html>
   <head>
      <meta charset="utf-8">
      <title>Bus Map</title>
      
      <style type="text/css">
         #busmap {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 5em;
         }
      </style>
      
      <script src="//maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
      <script src="busmap.js" type="text/javascript"></script>
   </head>
   <body>
      <h1>Bus Map</h1>
      
      <div id="busmap"></div>
   </body>
</html>