myatoo

RadioButton

Nov 29th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Radio Button Tag</title>
  6.   </head>
  7.   <body>
  8.     <h1>Hotel Feedback Form</h1>
  9.     <form class="" action="" method="get">
  10.       <h3>Are you from insdie the US? Or outside the US?</h3>
  11.       <!-- Radio Button -->
  12.       <label for="inUsa">Inside:</label>
  13.       <input id="inUsa" type="radio" name="local" value="inside">
  14.  
  15.       <label for="outUsa">Outside:</label>
  16.       <input id="outUsa" type="radio" name="local" value="outside">
  17.  
  18.       <h1>How was your service?</h1>
  19.       <!-- Select Tag -->
  20.       <select class="" name="stars">
  21.         <option value="Great">3</option>
  22.         <option value="Okay">2</option>
  23.         <option value="Bad">1</option>
  24.       </select>
  25.  
  26.       <p>Any other Feedback?</p>
  27.       <!-- TextArea Tag -->
  28.       <textarea name="myText" rows="8" cols="80"></textarea><br>
  29.  
  30.       <input type="submit" name="" value="Submit">
  31.     </form>
  32.   </body>
  33. </html>
  34.  
Add Comment
Please, Sign In to add comment