answersLogoWhite

0


Best Answer

shitzer

User Avatar

Anonymous

Lvl 1
4y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does HTML use to annotate a document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.


How do you use hyperlinks in frames in a HTML document?

You can use hyperlinks in frames too in an HTML document. You can place the anchor tag out side of a frame.


How do you annotate photos and documents?

Well to annotate something is to make critical and explanatory notes of the work. This means to basically mark up the text. So to annotate a photo or a document you would take note on (or mark) the use of color, the texture, technique and so on.


What are the elements of an HTML document?

The elements of an HTML document are:HEADTITLEBODY


Can you centrally align the heading of the HTML document you created?

When you create an HTML document, you can include a heading on the page. Here is an example of how you can use HTML to center the heading: <center><h1>Page Heading</h1></center>.


What is doctype HTML public -w3cdtd HTML 4.01 transitionalen httpwwww3orgtrHTML4loosedtd?

This is the Document Type Definition that should be the beginning of any HTML document. Generally, there is Transitional, Frameset and Strict.The declaration (technically it's not a "tag") should be the very first thing in your document... if you choose to use it at all. tells the browser what version of HTML you are writing in.More specifically, declares that this document conforms to a specific version of HTML, and specifies what version that is.


What is Doctype?

An identifier in the HTML document, that tells to the browser which type of HTML it needs to use to show contents of that document. Specifying different versions of HTML will result in different behavior of the document. If the type hasn't been specified at the beginning of HTML document the browser might load it slowly or even with the errors. Usage: <!DOCTYPE HTML /*Here goes type of the document specification (DTD)*/>


How do i HTML question?

You can use any text editor although I suggest Notepad++ which is a free download and save a HTML document as all file types with a .HTML extension


How is the HTML document used for making a hyperlink?

Correct syntax for creating a hyperlink in HTML is <a href="the_file_name_link.html">This is a link</a>


How do you open HTML document?

click on html link


Where can one download a blank HTML document for free?

You can download a blank HTML document for free online from the W3Schools website. Once on the page, click on "HTML" in the left navigation menu and then copy and paste the code from the box into a text document and name it with the .html file extension to save the blank HTML document.


Explain the procedure of linking a style sheet in HTML document?

To link a style sheet into an HTML document, you will use the <link> tag. This tag links, or embeds, the style sheet into the document. This would look like: <link rel="stylesheet" href="style.css" type="text/css" /> This allows you to use the same style sheet and rules on multiple HTML documents.