Advertisement
deadsix

Web App HTML

Jun 12th, 2013
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <!-- header information-->
  4.     <!-- Imported and linked stylesheets-->
  5.     <head>
  6.         <meta charset="utf-8">
  7.         <meta name="viewport" content="width=device-width, initial-scale=1">
  8.         <link rel="stylesheet" type="text/css" href="stylesheet.css">
  9.         <link rel="stylesheet" type="text/css" href=" jquery.mobile.flatui.css">
  10.         <script type="text/javascript" src="script.js"></script>
  11.         <script src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
  12.         <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
  13.         <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  14.         <title>Web App</title>
  15.     </head>
  16.     <body>
  17.     <!-- Homepage-->
  18.         <div data-role="page" id="TCHomepage">
  19.             <!--Hidden Panel on homepage-->
  20.                 <div data-role="panel" id="homePagePanel" data-position-fixed="true" data-position="left" data-display="push"  data-dismissible="false" data-swipe-close="false">
  21.                     <p id = "panelTitle">Functions</p>
  22.                         <p class = "panelFunctions">Function 1</p>
  23.                        
  24.                         <p class = "panelFunctions">Function 2</p>
  25.                        
  26.                         <p class = "panelFunctions">Function 3</p>
  27.                        
  28.                         <p class = "panelFunctions">Function 4</p>
  29.                        
  30.                         <p class = "panelFunctions">Function 5</p>
  31.                 </div>
  32.                 <header></header>
  33.     <!--Navigation Bar-->
  34.     <!-- Set up persistent nav bar using data-position="fixed"-->
  35.                 <div data-role="header" data-position="fixed" class="header-bar">
  36.                     <a href="#homePagePanel" data-icon="flat-menu">Menu</a>
  37.                     <h1>Trouble Call Web App</h1>
  38.                     <a href="#TCHomepage" data-icon="home">Home</a>
  39.                 </div>
  40.     <!--Homepage Accordion-->
  41.                 <div data-role="collapsible-set" data-inset="false" id="homepageAccordian" >
  42.     <!-- Crew List -->
  43.                     <div data-role="collapsible">
  44.                         <h3>Crew</h3>
  45.                             <ul data-role="listview" data-inset="false">
  46.                                 <li>Crew #1</li>
  47.                                 <li>Crew #2</li>
  48.                                 <li>Crew #3</li>
  49.                                 <li>Crew #4</li>
  50.                             </ul>
  51.                     </div>
  52.     <!-- Last Ten -->
  53.                     <div data-role="collapsible">
  54.                         <h3>Open Calls</h3>
  55.                             <ul data-role="listview" data-inset="false">
  56.                                 <li>Call #1</li>
  57.                                 <li>Call #2</li>
  58.                                 <li>Call #3</li>
  59.                                 <li>Call #4</li>
  60.                             </ul>
  61.                     </div>
  62.                 </div>
  63.             <footer></footer>
  64.         </div>
  65.     </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement