answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you fix the What if your HTML cannot be accepted Tag is broken?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the A HTML tag called?

The HTML tag is called the "anchor" tag.


What HTML tag is used to mark the top of the page?

The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.


How can be h7 be availiable in HTML?

There is no h7 tag in html, so trying one will not be recognised. You can use CSS to create different sizes of text for different tags, if that is what you need, but you cannot have a h7 tag as it does not exist in HTML and so it would be ignored.


What characters cannot be included in an HTML comment?

There are no restrictions on which character cannot be placed in the comment tag, as As it is not --&gt;, since that will end the comment.


What is used to meta tag in HTML?

html


The tag that appears after the HTML tag is?

&lt;head&gt;


What is the first tag in every HTML document?

The HTML document begins,and ends with the tag . The element defines the whole HTML document. The element has a start tag and an end tag The Start element Tags within the HTML tags begins the content to be displayed for the web page (end body tag) The basic Tags needed to start an HTML document (and must be ended) look like this: This is where the content goes


Which tag tells the Web browser that the document file contains HTML?

The &lt;html&gt; tag at the top and the bottom tells the browsers. It is defined as &lt;html&gt; and &lt;/html&gt; at bottom.


What is the full form of BR in HTML?

The correct HTML form for BR is . BR is a tag to force a line break. It was introduced as a single tag, with no companion tag. The and tags work with older HTML, but for HTML 5, you need to have an ending tag for each tag. You can create your own ending tag by adding forward slash within the single tag: .


What does I mean in html?

The I tag is the italics tag: This is in &lt;i&gt;italics&lt;/i&gt;.


What are container tag and singular tag in HTML?

Head


Whose tag used in HTML for image display one by one after few seconds?

This cannot be accomplished with HTML. You may need to use JavaScript to accomplish this effect.