Advertisement
Guest User

index.html

a guest
Mar 30th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.  
  5.     <title>Quiz</title>
  6.  
  7.     <!-- Meta Tags -->
  8.     <meta charset="utf-8"/>
  9.  
  10.     <!-- Stylesheets -->
  11.     <link rel="stylesheet" href="css/reset.css">
  12.     <link href='http://fonts.googleapis.com/css?family=Lato:400,700,900,900italic' rel='stylesheet' type='text/css'>
  13.     <link rel="stylesheet" href=" css/stylesheet.css"/>
  14.  
  15.     <!-- JavaScript -->
  16.     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  17.     <script type="text/javascript" src=" js/app.js"></script>
  18.     <script>
  19.         $('#animatedElement').click(function() {
  20.             $(this).addClass("slideUp");
  21.         });
  22.     </script>
  23.  
  24. </head>
  25. <body>
  26.  
  27. <header> <!--Header -->
  28.  
  29.     <!-- Top Navigation -->
  30.     <nav>
  31.         <ul class="clearfix">
  32.             <li><button class="what" href="#">Wut ?</button></li>
  33.             <li><button class="new" href="#">+ New Quiz</button></li>
  34.         </ul>
  35.     </nav>
  36.  
  37.     <!-- Modal Information Box -->
  38.     <div class="overlay" id="modal">
  39.         <div class="content">
  40.             <h3>What do I do?</h3>
  41.             <div>
  42.                 <p>Get your sex & violence on...pass the quiz and see some tits. Now, stop procrastinating!
  43.                <button class="close" href="#">got it!</button></p>
  44.            </div>
  45.        </div>
  46.    </div>
  47.  
  48.  
  49. </header>
  50.  
  51.  
  52.  
  53. <section class="quiz"> <!-- guessing section -->
  54.  
  55.    <div class="container">
  56.        <h1>Pass the quiz and see some tits!</h1>
  57.        <div id="stuff">
  58.            <h3 id="question"></h3>
  59.  
  60.            <div id="choices"></div>
  61.            <p>
  62.                <button id="submit"></button>
  63.            </p>
  64.            <p id="score"></p>
  65.        </div>
  66.    </div>
  67. </section>
  68. </body>
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement