Advertisement
stw68

JQM Quiz Test

Aug 21st, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>Quiz Test</title>
  7.  
  8.     <link rel="stylesheet"  href="jquery.mobile/jquery.mobile-1.1.0.css" />
  9.    
  10.     <link href="css/reset.css" media="screen" rel="stylesheet" type="text/css">
  11.     <link href="css/slickQuiz.css" media="screen" rel="stylesheet" type="text/css">
  12.     <link href="css/master.css" media="screen" rel="stylesheet" type="text/css">
  13.    
  14.     <script type="text/javascript" src="jquery.mobile/jquery-1.7.2.min"></script>
  15.     <script src="js/slickQuiz-config.js"></script>
  16.     <script src="js/slickQuiz.js"></script>
  17.     <script src="js/master.js"></script>
  18.    
  19.     <script type="text/javascript" src="jquery.mobile/jquery.mobile-1.1.0.js"></script>
  20.  
  21.    
  22. </head>
  23.  
  24.     <body>
  25.    
  26.     <div data-role="page" id="slickQuiz" data-theme="b">
  27.    
  28.         <div data-role="header" data-position="fixed" data-theme="c">
  29.         <div class="ui-grid-solo">
  30.             <div class="ui-block-a">
  31.                 <div class="ui-bar ui-bar-d" style="text-align:center;">
  32.                 <h3>Quiz</h3>
  33.                 </div>
  34.             </div>
  35.         </div>
  36.     </div>
  37.  
  38.  
  39.  
  40.     <div data-role="content">
  41.    
  42.         <h1 class="quizName"><!-- where the quiz name goes --></h1>
  43.  
  44.         <div class="quizArea">
  45.             <div class="quizHeader">
  46.                 <!-- where the quiz main copy goes -->
  47.  
  48.                 <a class="button startQuiz" href="">Get Started!</a>
  49.             </div>
  50.  
  51.             <!-- where the quiz gets built -->
  52.         </div>
  53.  
  54.         <div class="quizResults">
  55.             <h3 class="quizScore">You Scored: <span><!-- where the quiz score goes --></span></h3>
  56.  
  57.             <h3 class="quizLevel"><strong>Ranking:</strong> <span><!-- where the quiz ranking level goes --></span></h3>
  58.  
  59.             <div class="quizResultsCopy">
  60.                 <!-- where the quiz result copy goes -->
  61.             </div>
  62.         </div>
  63.        
  64.         </div>
  65.  
  66.         </div>
  67.     </body>
  68.    
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement