Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <html>
  3.     <head>
  4.  
  5.         <title>Week 3 Example</title>
  6.  
  7.         <style>
  8.             body {
  9.                 width: 500px;
  10.             }
  11.            
  12.             fieldset {
  13.                 margin-bottom: 10px;
  14.             }
  15.         </style>
  16.     </head>
  17.    
  18.         <body>
  19.  
  20.             <h1>Week 3 People Search</h1>
  21.                
  22.                    
  23.                 <form action="process.cfm" method="get">
  24.                     <label for="searchText">Search Text: </label>
  25.                     <input type="text" name="searchText" id="searchText" />
  26.  
  27.                     <label for="searchOn">Search On: </label>
  28.                     <select name="searchOn" id="seachOn">
  29.                         <option value="firstname">First Name</option>
  30.                         <option value="lastname">Last Name</option>
  31.                         <option value="city">City</option>
  32.                         <option value="postalCode">ZIP</option>
  33.                         <option value="firstname">First Name</option>
  34.                         <option value="artistID">Artist ID</option>
  35.                     </select>
  36.                     <br /><br />
  37.                    
  38.                     <fieldset>
  39.                         <legend>Match Type</legend>
  40.    
  41.                         <input type="radio" name="matchType" id="exact" value="exact" /> <label for="exact">Exact</label>
  42.    
  43.                         <input type="radio" name="matchType" id="Wildcard" value="wildcard" /> <label for="wildcard">Wildcard</label>
  44.                        
  45.                     </fieldset>
  46.                    
  47.                     <fieldset>
  48.                         <legend>Sort</legend>
  49.    
  50.                         <input type="radio" name="sort" id="asc" value="asc" /> <label for="asc">Ascending</label>
  51.    
  52.                         <input type="radio" name="sort" id="desc" value="desc" /> <label for="desc">Descending</label>
  53.                        
  54.                     </fieldset>
  55.                    
  56.                     <label for="recordsToShow">Number Of Records: </label>
  57.                     <select name="recordsToShow">
  58.                         <option value="1">1</option>
  59.                         <option value="5">5</option>
  60.                         <option value="10">10</option>
  61.                     </select>
  62.                     <br /><br />
  63.                     <input type="submit" name="btnSubmit" value="Search" />
  64.             </form>
  65.                        
  66.     </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement