Advertisement
Guest User

Untitled

a guest
Jan 13th, 2011
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. <!--
  4.    New Perspectives on JavaScript
  5.    Tutorial 1
  6.    Case Problem 3
  7.  
  8.    Today at the Union
  9.    Author: Lucas Crownover 
  10.    Date: 1/13/11
  11.  
  12.    Filename:         today.htm
  13.    Supporting files: back.jpg, friday.htm, functions.js, monday.htm, mw.css,
  14.                      saturday.htm, schedule.css, sunday.htm, thursday.htm,
  15.                      tuesday.htm, wednesday.htm
  16. -->
  17.  
  18. <title>Today at the Union</title>
  19. <link href="mw.css" rel="stylesheet" type="text/css" />
  20.  
  21. <script type="text/javascript" src="functions.js"></script>
  22. <script type="text/javascript">
  23.  
  24. </script>
  25. </head>
  26.  
  27. <body>
  28.  
  29. <div id="logo">
  30.  
  31.    <div id="dateBox">
  32.     Today is <br />
  33.     <script type="text/javascript">
  34.         showDate();
  35.     </script>
  36.    </div>
  37.  
  38.    <div>MidWest Student Union <br />
  39.       <span id="links">
  40.          <a href="#">Home</a> |
  41.          <a href="#">Today at the Union</a> |
  42.          <a href="#">Activities</a> |
  43.          <a href="#">Special Events</a> |
  44.          <a href="#">Join Us</a>
  45.       </span>    
  46.    </div>
  47.  
  48. </div>
  49.  
  50. <h2 id="title">Today at the Union</h2>
  51. <p>
  52. </p>
  53. <address>
  54.    MidWest Student Union &#183;
  55.    300 Campus Drive &#183;
  56.    Grovedale, IL  48711 &#183;
  57.    (414) 555 - 3487
  58. </address>
  59.  
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement