Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1.  
  2. <!doctype html>
  3. <html>
  4.     <head>
  5.         <meta charset="UTF-8">
  6.         <title>BWM254 - CSS Refresher</title>
  7.         <style>
  8.         </style>
  9.     </head>
  10.    
  11.     <body>
  12.    
  13.         <div id="wrapper">
  14.        
  15.             <header>
  16.                 <h1>BWM254</h1>
  17.                 <p>CSS Refresher</p>
  18.             </header>
  19.            
  20.             <form>
  21.                 <fieldset>
  22.                     <p><label for="txtFirstName">First Name</label><input type="text" name="txtFirstName" id="txtFirstName" required></p>
  23.                     <p><label for="txtLastName">Last Name</label><input type="text" name="txtLastName" id="txtLastName" required></p>
  24.                     <p><label for="txtEmail">Email Address</label><input type="text" name="txtEmail" id="txtEmail" required></p>
  25.                     <p>
  26.                         <label for="ddlHobby">Hobby</label>
  27.                         <select name="ddlHobby" id="ddlHobby">
  28.                             <option>Snowboarding</option>
  29.                             <option>Rock Climbing</option>
  30.                             <option>Family Time</option>
  31.                         </select>
  32.                     </p>
  33.                     <p><input type="submit" name="btnSubmit" id="btnSubmit" title="Submit"></p>
  34.                 </fieldset>
  35.             </form>
  36.            
  37.         </div>
  38.        
  39.     </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement