answersLogoWhite

0

I could be wrong, but I think you would enter

22a22b

This won't do much other than make it be there. A good place to go would be http://www.htmlcodetutorial.com

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Write a HTML program to insert a selection list in a form?

<select id="selectlist"><option> First</option> <option> Second</option>. This is a sample program to insert a selection list.


What is the code to insert table in signup form in HTML?

First you have to get the data from signup form. Then using <td> and <tr> you can populate the results.


How can i Have php post to self with mysql?

Mysql is an Database where Data from HTML forms will be inserted to it by some scripts like ASP 3 (classic), ASP.NET, PHP, ColdFusion and... What you need is a form (By HTML), an Database and table in Mysql and PHP to insert data from your form to the table. mysql insert command is: INSERT INTO table_name_here (column1, column2, ..) VALUES (value_of_column_1, value_of_column_2, ...)


How do you insert a HTML text box in a flash website how to insert HTML text box code in empty text box?

The textarea tag is a part of the form tag and is contained within that and the fieldset tags. A textbox is produced by an inline or external JavaScript.


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.


What is meant by method equals post in HTML language?

method="POST" is a common attribute of the HTML <form> 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: <form action="receive.php" method="POST">Insert form data here</form> Again, this will tell the form to post all the data that the user has entered into it to the receive.php file.


What is the full form HTML?

It is Hypertext Markup Language (HTML)


How does HTML code produce the form displayed in the browser?

As subtle distinction between HTML and browser is that HTML code does not produce the form; the browser produces the form. The browser interprets HTML code to determine how to display page content.


What is the adjective form of insert?

The adjective form for the noun and the verb insert is insertable. Another adjective form for insert is the past participle of the verb, inserted.


How do you go from HTML form to php?

Build your form in HTML and specify your PHP file in the action of the document. HTML does the form stuff, PHP the processing (although you can - of course - use HTML inside PHP via print() or echo(), too)


Is there any way to call a PHP script in HTML?

PHP is a server side language, so cannot run within the browser as HTML does. You can however make a call to the PHP page within your HTML (using a form button or anchor link for example), and using Ajax (javascript) make the HTML show the response of the PHP program. The user will not know that the server side PHP program has been executed, as when using Ajax the browser does not load a new page.


What is the HTML form process?

HTML: Hyper text markup language Form is an object of a HTML..Inside it one can use many objects like text box,button. <form name="formname" id="f1"> our content </form>