Posts

Showing posts with the label form element

review: Create a form element task3

Add a  method  attribute to the form element with the value  "post" . <!DOCTYPE html> <html>   <head>     <meta charset="utf-8">     <title>HTML Forms</title>   </head>   <body>     <form  action="index.html" method="post" >          </form>        </body> </html>

review:Create a form element task2

Add an  action  attribute to the form element with the value  "index.html" . <!DOCTYPE html> <html>   <head>     <meta charset="utf-8">     <title>HTML Forms</title>   </head>   <body>     <form action="index.html" >          </form>        </body> </html>

review: Create a form element task1

Create a form element. Don't add any attributes yet. <!DOCTYPE html> <html>   <head>     <meta charset="utf-8">     <title>HTML Forms</title>   </head>   <body>     <form>          </form>        </body> </html>