answersLogoWhite

0

Attribute of form tag

Updated: 11/9/2022
User Avatar

Wiki User

15y ago

Best Answer

<form name=".." action="..." method="...."> and </form> Change .. with the name of the form. Change ... with the website you want it to go to once the form has been submitted. Change .... with the method so either get or post

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Attribute of form tag
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.


Which attribute specifies the submit URL in a form tag in HTML?

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


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

The input tag with the type attribute as hidden.


What does an attribute allow you to do to a tag?

An attribute allows you to customize the way a tag works and also specify the mandatory aspects of the tag. For example &lt;Form name = "xxx" action = "yyy"&gt; In the above tag, the name and action attributes are mandatory. You cannot identify the form without a name and you cannot know which place to submit the requests without the action.


What is an attribute and value to an HTML tag?

A tag can have an additional setting in it. This is an attribute. The attributes can then be given values. For example the body tag has an attribute to set the background colour of the page. The attribute is bgcolor. What colour you specify is the value, in this case it is red: &lt;body bgcolor="Red"&gt;


What is an aspnet webform?

All server controls must appear within a &lt;form&gt; tag, and the &lt;form&gt; tag must contain the runat="server" attribute. The runat="server" attribute indicates that the form should be processed on the server. It also indicates that the enclosed controls can be accessed by server scripts: &lt;form runat="server"&gt; &lt;/form&gt;


What is an XML attribute?

An XML attribute is a specified property for a tag with a value. For example, the XML tag "person" could have the attribute "name" with a value of "bob."


Is width a tag in HTML?

This is not a tag. It is an attribute and part of CSS


What style attribute will change the color of the text of a tag?

The attribute color :)


What is meant by method equals post in HTML language?

method="POST" is a common attribute of the HTML &lt;form&gt; tag. What this does is tells the form that it needs to "post" the data to whatever file you have specified in your "action" attribute of the form tag. So your form tag might look something like this: &lt;form action="receive.php" method="POST"&gt;Insert form data here&lt;/form&gt; Again, this will tell the form to post all the data that the user has entered into it to the receive.php file.


Do every tag require an attribute?

Nope. Every tag doesn't require an attribute. For instance, the paragraph tag is perfectly valid without any: &lt;p&gt;Look how valid I am!&lt;/p&gt;


Which attribute is used in script tag to specify a file containing the java script statements?

The script tag will have the "src" attribute to identify the location of the script's contents.