answersLogoWhite

0

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

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Is Slash is used to create a closing tag?

Yes. &lt;FORM&gt; is the opening tag whereas &lt;/FORM&gt; is the closing tag. This &lt;/TAG&gt; to close tags is applicable for most tages. ex: &lt;HTML&gt; &lt;/HTML&gt; &lt;BODY&gt; &lt;/BODY&gt; etc...


Can you create a database with only a form?

Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.


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 &lt;html&gt; &lt;head&gt; &lt;title&gt;Our Cool Form Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form method="post" action="example.php"&gt; &lt;input type="submit" value="submit"&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;


Html full form?

Html is a standard markup language used to create web pages. In full form, it stands for Hyper Text Markup Language.


How do you create forms using ASP and HTML?

You can use a WYSIWYG html editor to drag and drop html form controls and program their function. An html editor such as Microsoft Front Page or Adobe DreamWeaver can do these tasks.


How can you pass data from one form to anather in php?

A file: practise.html &lt;html&gt; &lt;body&gt; &lt;form method="post" action="another.php" enctype="multipart/form-data"&gt; &lt;input type="text" name="field1" id="field1" /&gt; &lt;input type="submit" name="submit" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; File: another.php &lt;html&gt; &lt;body&gt; &lt;?php $text = $_POST['field1']; ?&gt; &lt;form&gt; &lt;input type="text" name="textfield1" id="txtfield" value="&lt;?php echo $text; ?&gt;" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;


How do you create a form in database?

To create an online form and database, you could learn PHP, MYSQL, HTML and Javascript or alternatively try something like www.recs4free.com. This will do most of the work for you.


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

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


How do you create a button in HTML?

This will create a button with the words Click Here written on it. The tag must be inside Form tags, as buttons are part of forms.


What is the HTML code for input student information?

You can create a form for student input information. It can create name, roll number, class, section etc.


What are the three bones fused to create the sternum?

The three bones are the manubrium, the body of the sternum, and the xiphoid process. They fuse together to form the sternum, which is a flat bone located in the center of the chest.


How do you create a registration form using css and javascript in HTML?

Form is an HTML construct. The first part tells the server to Get or Post. To format with CSS is one thing, to make it interactive, use JavaScript. I will give a URL below: