answersLogoWhite

0

What is function of HTML code?

User Avatar

Anonymous

10y ago
Updated: 8/21/2019

HTML code sends instructions to a browser defining the format of the page. For example, you can use the <b></b> tags to tell the browser to display something in bold text.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

How HTML code is interpreted?

HTML Code is interpreted differently by browsers. Each tag has a certain function attached to it.


What is the function of i HTML tag?

&lt;i&gt; is for italics the HTML tag itself &lt;html&gt; is to let the browser know how to read the code and you save the file as .html or .htm. It simply reference the code that the web page is written in.


How HTML is interpreted?

HTML Code is interpreted differently by browsers. Each tag has a certain function attached to it.


Where are scripts placed in an HTML document?

you can put your script into a function. A function contains code that will be executed by an event or by a call to the function.


What Is The Code To Show An Html A Text?

&lt;code&gt;&lt;code&gt;HTML TEXT HERE&lt;/code&gt;&lt;/code&gt;


HTML code has a limit of 10 webpages per site?

No! HTML is simply code. You can write 1 million pages of HTML code if you want. HTML is not a program. Its code. Now you may have a program that uses HTML code and that program has limitations. But not HTML itself.


How do you pull up your HTML code?

You can pull up your HTML code by right clicking the code and hitting, View Source. This will open the HTML code and you can format it.


What Pokemon game has a HTML code?

No game has HTML code because HTML is only for web design.


What is the name given to a piece of HTML code?

There is no specific name to a piece of HTML code. It is just an HTML code written in markup language.


What is the function of HTML in a webpage?

The function of HTML as a scripting language is limited to it's design. All the design developed can be viewed by HTML.


Can you see the HTML code in Kompozer?

Yes, you can see the HTML code in Kompozer.


How do you get content of iframe in javascript?

document.getElementById('iFrame_ID).contentWindow.document.body.innerHTML; ///////////////////////////////////////////////////////////// The above code is very vague so i thought i would update it: $(function(){ $("#iframeid").load(function(){ var HTML = document.getElementById('iframeid').contentWindow.document.body.innerHTML; alert(HTML); }); }); Regards Phil Jackson