answersLogoWhite

0

Why HTML not generate error?

Updated: 10/19/2022
User Avatar

Wiki User

13y ago

Best Answer

XHTML is a markup language, not a script language which means that in fact no programming (functions etc.) happens, XHTML displays info.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why HTML not generate error?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can you fix a certificate error with HTML?

It is not possible to fix a certificate error with HTML. Certificates are stored and interpreted by the browser. HTML is a formatting language, it does not control security certificates.


Can you use yacc to generate a parser for HTML parsing?

Yes.


How do you convert HTML to c code?

You can't. HTML is a markup language. C is a programming language. You can make C generate HTML, but C isn't anything like HTML in the way it functions.


What are the advantages and disadvantages of using a word procossor to create a web page?

Advantages: You are familiar with the software. It might generate HTML code. It might generate CSS code. Disadvantages: It was built to write your resume. Most code generated is not W3C compliant. It will most definitely generate absolutely positioned elements.


How do you fix the What if your HTML cannot be accepted Tag is broken?

When you see the HTML in the document it means that there is an error in the HTML written. You should be able to figure out the error from the HTML line that is showing. For example if you are missing a tag for the <P> command as the following example: <P>This is the correct way.</P> (will show as) This is the correct way. <P>This is the Wrong Way /P> (will show as) This is the wrong way /P> In the example of the wrong way the <P> end tag is open and shows up on the document. A missing end tag could have the same results. or you could be missing a tag altogether. You might have to look for it, and correct it. The error could be a missing a Quote such as the attribute for a hyper link should be enclosed in quotes such as <a href="'http://wikiAnswers.com> will appear as a link: WikiAnswers.com If one of the two quotes are missing it will show on the page as <a href="http://mo.com%3EWikianswers.com The point where the error is made in the HTML will show in the document. You just have to go in and edit it.

Related questions

What is a HTML generator?

It is a program that can generate HTML for you, without you needing to know what HTML is and how to use it. So you can type out your text and say what size and colour you want it and the generator will create the HTML code to do that for you. Dreamwaver is a very well known piece of software that can generate HTML for you.


How can you fix a certificate error with HTML?

It is not possible to fix a certificate error with HTML. Certificates are stored and interpreted by the browser. HTML is a formatting language, it does not control security certificates.


Can you use yacc to generate a parser for HTML parsing?

Yes.


What is the HTML of Friendster?

Go to the Friendster homepage, and view the source it gives you. That is the HTML they use. However, they most likely use a dynamic language to generate this HTML.


How do you convert HTML to c code?

You can't. HTML is a markup language. C is a programming language. You can make C generate HTML, but C isn't anything like HTML in the way it functions.


What does this error message mean 'Error the HTML may not contain absolute positioned tags because they break the Page Editor' and how do you fix the problem?

It means your HTML editor does not support elements that are positioned absolutely.Solution: Use another HTML editor.


Why is howrse saying that your HTML on your page is wrong so it wont work?

HTML when contains error won't work on the browsers. It can happen when a tag is not closed correctly.


What are the Error occurs when no checkbox is checked in PHP?

Suppose you have checkbox in HTML from and and you are calling that checkbox by name in php , In that case in you don't check and hit submit , You will get Undefined parameter 'name_of _checkbox' As Error.


Why is important to learn HTML before learning JAVA?

It is not necessary to learn HTML before learning Java. Java is a complete computer programming language. The only reason you would need to know HTML with Java is if you wanted to use Java to generate webpages, or you wanted to create Java applets that you would then embed into webpages using HTML.


How do you rectify HTML to PHP variable error?

To use HTML as variable in PHP . echo the html tag written in double quotes. Example : <?php echo "<table>"; echo "<tr><td></td><td></td></tr>" echo "</table>"; ?>


What is the command to display HTML page through javascript?

If you're planning on linking to another page, all you have to write is: document.location = "yourNewURL"; If you want to generate Javascript, then you can either use: document.write("your HTML Code"); OR send the HTML code to an existing object in an HTML page, like so: document.getElementById['targetElement'].innerHTML = "your HTML Code here"; ----------------- That's pretty much it. If you want me to elaborate, please let me know. :)


What are the advantages and disadvantages of using a word procossor to create a web page?

Advantages: You are familiar with the software. It might generate HTML code. It might generate CSS code. Disadvantages: It was built to write your resume. Most code generated is not W3C compliant. It will most definitely generate absolutely positioned elements.