answersLogoWhite

0

How do you submit an HTML?

Updated: 8/18/2019
User Avatar

Wiki User

12y ago

Best Answer

I don't understand exactly what you mean by that but if you simply save a file with the extension .HTML it will be a HTML file that you can publish online. for eg

<HTML>

<body>

This is my HTML page

</body>

</HTML>

will simply show "This is my HTML page" on your web browser

hope i helped

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you submit an HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


What purposes are HTML forms used for?

The purpose of HTML forms is that they are used to allow people to submit information to a web site. One may submit a zip code to retrieve a list of restaurants in their are. Also, one may submit an address to receive coupons by mail.


What is the difference between button and submit button in html?

A diferença é que um envia o comando HTML e o outro não


How do you send a message from jsp file to HTML file in tomcat server?

just click submit


What would be contained in the HTML forms?

There are a number of elements that could be contained in the HTML forms. They can contain text fields, check boxes, option lists and buttons with submit functions.


How do you wrte aform in HTML?

&lt;html&gt; &lt;body&gt; &lt;form name="input" action="action.asp" method="post"&gt; First name: &lt;input type="text" name="FirstName" value="Rocky" size="20" /&gt;&lt;br /&gt; Last name: &lt;input type="text" name="LastName" value="Maivia" size="20" /&gt;&lt;br /&gt; &lt;input type="submit" value="Submit" /&gt; &lt;/form&gt; &lt;p&gt;Click the "Submit" button and the page would be submitted to "action.asp".&lt;/p&gt; &lt;/body&gt; &lt;/html&gt;


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

A form can be created in HTML using the &lt;form&gt; tag. Inside form tag we can use elements like input, submit or reset.


How can submit form and popup come on single submit button click at a time?

Here is the code: &lt;head&gt; &lt;html&gt; &lt;script type="text/javascript" language="javascript"&gt; function submitForm() { // Validation Code in here var confirm = confirm("Are you sure you want to submit"); if(confirm==true) { form1.form.submit(); return true; } else { return false; } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form name="form1" action="file_name.php" method="post"&gt; // Other form elements here &lt;input type="submit" name="submit" id="submit" onclick="javascript:submitForm();return false;" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;


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.)


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;


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;


How do you get data back and forth between HTML and PHP?

Via AJAX. Another simpler way would be to use form elements and submit them via html and let PHP process the data. Processed data can be output in html form via echo or print statements in php.