Advertisement
coasterka

#5FlightOrderMenu

Jun 10th, 2014
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 5.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.     <!--works best on Chrome-->
  5.     <head>
  6.         <title>Flight Order</title>
  7.         <link type="text/css" rel="stylesheet" href="styles/style02.css"/>
  8.         <link type="image/x-icon" rel="shortcut icon" href="images/favicon.ico"/>
  9.     </head>
  10.     <body>
  11.         <div id="background">
  12.            
  13.             <form method="get">
  14.                
  15.                 <h2>flight order</h2>
  16.                
  17.                 <table> <!--the whole table-->
  18.                
  19.                     <tr> <!--for the whole section-->
  20.                
  21.                         <td> <!--for the #from div-->
  22.                        
  23.                             <div id="from">
  24.                                
  25.                                     <span>from</span><br>
  26.                        
  27.                                     <select name="from-city" class="dropdown"> <!--dropdown menu for choosing departure city-->
  28.                                         <option value="enter-a-city"
  29.                                         disabled="disabled"
  30.                                         selected="selected">Enter a city</option>
  31.                                         <option value="dubai">Dubai</option>
  32.                                         <option value="las-vegas">Las Vegas</option>
  33.                                         <option value="london">London</option>
  34.                                         <option value="paris">Paris</option>
  35.                                         <option value="rome">Rome</option>
  36.                                         <option value="sofia">Sofia</option>
  37.                                     </select> <!--dropdown menu for choosing departure city-->
  38.                
  39.                                     <br><br>
  40.                    
  41.                                     <span>departure date</span><br>
  42.                                    
  43.                                      <!--menu for choosing departure date-->
  44.                                      
  45.                                     <input type="date"
  46.                                     class="text-field"
  47.                                     value="2014-06-10"/>
  48.                                    
  49.                                     <br>
  50.                                    
  51.                                      <!--menu for choosing return date-->
  52.                                    
  53.                                     <span>return date</span><br>
  54.                                    
  55.                                     <input type="date"
  56.                                     class="text-field"
  57.                                     value="2014-06-14"/>
  58.                                    
  59.                                     <br>
  60.                                    
  61.                                     <table> <!--table for choosing passengers count and age-->
  62.                                        
  63.                                         <!--labels-->
  64.                                        
  65.                                         <tr id="age">
  66.                                             <td>12+</td>
  67.                                             <td>2-12</td>
  68.                                             <td>0-2</td>
  69.                                         </tr>
  70.                                        
  71.                                         <!--table row for menus choosing passengers count and age-->
  72.                                        
  73.                                         <tr id="age-menus">
  74.                                             <td>
  75.                                                 <input type="number"
  76.                                                 value="0"
  77.                                                 min="0"
  78.                                                 max="99"/>
  79.                                             </td>
  80.                                             <td>
  81.                                                 <input type="number"
  82.                                                 value="0"
  83.                                                 min="0"
  84.                                                 max="99"/>
  85.                                             </td>
  86.                                             <td>
  87.                                                 <input type="number"
  88.                                                 value="0"
  89.                                                 min="0"
  90.                                                 max="99"/>
  91.                                             </td>
  92.                                         </tr>
  93.                                    
  94.                                     </table> <!--table for choosing passengers count and age-->
  95.                                
  96.                             </div> <!--#from-->
  97.                        
  98.                         </td> <!--for the #from div-->
  99.                        
  100.                         <td> <!--for the #to div-->
  101.                        
  102.                             <div id="to"> <!--#to-->
  103.                                
  104.                                     <span>to</span><br>
  105.                                    
  106.                                     <select name="to-city" class="dropdown"> <!--dropdown menu for choosing arrival city-->
  107.                                         <option value="enter-a-city"
  108.                                         disabled="disabled"
  109.                                         selected="selected">Enter a city</option>
  110.                                         <option value="dubai">Dubai</option>
  111.                                         <option value="las-vegas">Las Vegas</option>
  112.                                         <option value="london">London</option>
  113.                                         <option value="paris">Paris</option>
  114.                                         <option value="rome">Rome</option>
  115.                                         <option value="sofia">Sofia</option>
  116.                                     </select> <!--dropdown menu for choosing arrival city-->
  117.                                    
  118.                                     <br>
  119.                        
  120.                                     <input type="checkbox" name="directs" id="directs"/> <!--chechkbox for choosing flight type - direct or not-->
  121.                                     <label for="directs" id="directs-label">Prefer directs</label>
  122.                                    
  123.                                     <br>
  124.                                    
  125.                                     <span>time interval</span><br>
  126.                                    
  127.                                     <table class="time-menus"> <!--table for choosing flight time intervals-->
  128.                                         <tr>
  129.                                             <td>
  130.                                                 <input type="time" name="time-field-first" value="00:20"/>
  131.                                             </td>
  132.                                             <td>
  133.                                                 <input type="time" name="time-field-second" value="05:00"/>
  134.                                             </td>
  135.                                         </tr>
  136.                                     </table> <!--table for choosing flight time intervals-->
  137.                                    
  138.                                    
  139.                                    
  140.                                     <span>time interval</span><br>
  141.                                    
  142.                                     <table class="time-menus"> <!--table for choosing flight time intervals-->
  143.                                         <tr>
  144.                                             <td>
  145.                                                 <input type="time" name="time-field-third" value="16:00"/>
  146.                                             </td>
  147.                                             <td>
  148.                                                 <input type="time" name="time-field-fourth" value="22:00"/>
  149.                                             </td>
  150.                                         </tr>
  151.                                     </table> <!--table for choosing flight time intervals-->
  152.                                    
  153.                                     <span id="class-span">choose class</span>
  154.                                    
  155.                                     <select name="choose-class" class="dropdown"> <!--dropdown menu for choosing flight class-->
  156.                                         <option value="first">First</option>
  157.                                         <option value="business">Business</option>
  158.                                         <option value="economy" selected="selected">Economy</option>
  159.                                         <option value="premium-econ">Premium Economy</option>
  160.                                     </select> <!--dropdown menu for choosing flight class-->
  161.                            
  162.                             </div> <!--#to-->
  163.                        
  164.                         </td> <!--for the #to div-->
  165.                
  166.                     </tr> <!--for the whole section-->
  167.                    
  168.                     <tr>  <!--for the search button-->
  169.                    
  170.                         <td> </td>
  171.                        
  172.                         <td id="search">
  173.                            
  174.                             <input type="submit"
  175.                             name="search-btn"
  176.                             value="Search"/>
  177.                            
  178.                         </td>
  179.                    
  180.                     </tr> <!--for the search button-->
  181.                
  182.                 </table> <!--the whole table-->
  183.            
  184.             </form>
  185.            
  186.         </div> <!--#background-->
  187.     </body>
  188. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement