Advertisement
GameNationRDF

index.html

Aug 4th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <body>
  4.         <p> Enter details of your car: </p>
  5.  
  6.         <form id="car_form" method="post" action="/cgi-bin/script.py">
  7.  
  8.             Make : <input type = "text" name = "f_make"  id = "f_make" ><br>
  9.             Model: <input type = "text" name = "f_model" id = "f_model"><br>
  10.             Color: <input type = "text" name = "f_color" id = "f_color"><br>
  11.             Year : <input type = "text" name = "f_year"  id = "f_year" ><br>
  12.             Price: <input type = "text" name = "f_price" id = "f_price"><br>
  13.             Power: <input type = "text" name = "f_power" id = "f_power"><br> <br>
  14.  
  15.             <input type="submit" value="Submit" >
  16.  
  17.         </form>
  18.     </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement