Advertisement
Guest User

Untitled

a guest
May 5th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.  
  5. <!-- Basic Page Needs -->
  6. <meta charset="utf-8">
  7. <title>Bulldog Burritos - The Best Burritos in Town</title>
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10.  
  11. <!-- Mobile Specific Metas -->
  12. <meta name="viewport" content="width=device-width, initial-scale=1">
  13.  
  14. <!-- FONT -->
  15. <link href="//fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
  16.  
  17. <!-- CSS -->
  18. <link rel="stylesheet" href="css/normalize.css">
  19. <link rel="stylesheet" href="css/skeleton.css">
  20. <link rel="stylesheet" href="css/custom.css">
  21.  
  22. <!-- Scripts -->
  23. <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  24.  
  25. <script type="text/javascript">
  26.  
  27. /* When the document is ready (fully-loaded) */
  28. $(document).ready(function () {
  29.  
  30. /* Create empty responsive navigation dropdown */
  31. $("<select />").appendTo("#navigation div");
  32.  
  33. /* Add default "Go to" item to the responsive navigation dropdown */
  34. $("<option />", {
  35. "selected": "selected",
  36. "value": "",
  37. "text": "Go to..."}).appendTo("#navigation div select");
  38.  
  39. /* Populate the dropdown using values from the current navigation bar */
  40. $("#navigation div ul li a").each(function () {
  41. var el = $(this);
  42. $("<option />", {
  43. "value": el.attr("href"),
  44. "text": el.text()
  45. }).appendTo("#navigation select");
  46. });
  47.  
  48. /* When dropdown option changes, go to its URL */
  49. $("#navigation select").change(function () {
  50. window.location = $(this).find("option:selected").val();
  51. });
  52.  
  53. });
  54.  
  55. </script>
  56.  
  57. <!-- Favicon -->
  58. <link rel="icon" type="image/png" href="images/favicon.png">
  59.  
  60. </head>
  61. <body>
  62.  
  63. <!-- Primary Page Layout -->
  64.  
  65. <!-- start header -->
  66. <div class="band header">
  67. <div id="header" class="container">
  68. <div class="twelve columns">
  69. <h1 class="logo"></h1>
  70. </div>
  71. </div>
  72. </div>
  73. <!-- end header -->
  74.  
  75. <!-- start navigation -->
  76. <div class="band navigation">
  77. <div id="navigation" class="container">
  78. <div class="twelve columns">
  79. <ul>
  80. <li><a href="index.html">Home</a></li>
  81. <li><a href="menu.html">Menu</a></li>
  82. <li><a href="about.html">About</a></li>
  83. <li><a href="directions.html">Directions</a></li>
  84. </ul>
  85. </div>
  86. </div>
  87. </div>
  88. <!-- end navigation -->
  89.  
  90. <!-- start content -->
  91. <div id="content" class="container">
  92. <div class="eight columns">
  93. <h2>Welcome to Bulldog Burritos!</h2>
  94. <p>Here at <strong>Bulldog Burritos</strong> we pride ourselves on creating awesome burritos with awesome ingredients for awesome students.</p>
  95. <p>Proudly serving the Arvada High School student body since 1900, <strong>Bulldog Burritos</strong> has helped to feed over a century's worth of Arvada's finest students and faculty.</p>
  96. <p>We offer jumbo, mission-style, burrito creations, and tacos that won't break your budget. Watching your weight? You should probably just turn around then and go somewhere else. Check out our <a href="menu.html" title="Our Menu">Menu page</a> for more.</p>
  97. <p>How can we serve <strong><em>you</em></strong> today?</p>
  98. </div>
  99. <div class="four columns">
  100. <img src="images/high-schooler-eating-burritos-1024x683.jpg" alt="High Schoolers Eating Burritos">
  101. </div>
  102. </div>
  103. <!-- end content -->
  104.  
  105. <!-- start footer -->
  106. <div class="band footer">
  107. <div id="footer" class="container">
  108. <div class="twelve columns">
  109. <p><em>We've got the best burritos this side of the water bowl!</em></p>
  110. </div>
  111. </div>
  112. </div>
  113. <!-- end footer -->
  114.  
  115. <!-- End Document -->
  116. </body>
  117.  
  118. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement