answersLogoWhite

0


Best Answer

Use the "action" attribute of a FORM element to specify the URI of the form processor.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which attribute specifies the submit URL in a form tag in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which attribute of an HTML form tells the browser how to encode the information?

The enctype attribute indicates how the form data should be encoded. It is placed in the form tag inside it.


What does it mean to do HTML submit?

HTML means Hypertext Markup Language. The tag is used for various javascripts and Java programs. HTML submit is a form of a script in Java programming.


How do you make a register page in HTML?

You can easily make a register page in HTML using the <form> attribute. The form will contain the registration details.


Which tag is used to hide the field on a HTML form?

The input tag with the type attribute as hidden.


What three tags create the body of the form in HTML?

A form can be created in HTML using the <form> tag. Inside form tag we can use elements like input, submit or reset.


What is the use of name attribute in designing form in HTML and what happens if not used?

The name attribute can be used for referring the value in other context. For example for passing the value in JavaScript.


Can HTML form be sent by Ajax?

Yes. You can use AJAX to submit the form. You can also use AJAX to get the actual HTML to produce the form (although you might also simply use that AJAX call to describe the form and then produce the HTML on the receiving end.)


What tag would you use to create a submit button with the label send form?

To create a submit button, use the input type submit. To assign text to the button, pass the text in as the value of the value attribute. Like so: <input type="submit" value="Send Form">


How do you create a drop down list of content for your webpage?

You could use the HTML <form> attribute to learn more about it have a look under the HTML section @ http://www.w3schools.com


What is HTML form?

The HTML form tag is a container tag for holding HTML elements that allow the user to submit information to the server for processing. The form tag contains attributes like ID (which allows serverside code to identify the form) method (which is GET or POST, and defines how the info in the form will get sent to the server) and type (which is used to distinguish between regular forms, and forms that contain files.) The form tag also has the action attribute, which will tell the browser where to send the submitted data for processing. <form id="search" action="search.php" method="get"> <!--Form elements go here--> </form>


Can you use body tag and form tag together in HTML?

If you want to maintain W3C compliance, you can't use the FORM tag without the BODY tag. The FORM tag must be contained within the BODY tag. Like this <html> <head> <title>Our Cool Form Page</title> </head> <body> <form method="post" action="example.php"> <input type="submit" value="submit"> </form> </body> </html>


In HTML 4.0 Which is the correct enctype attribute for a FORM collecting user text input and file uploads?

text/plain