answersLogoWhite

0


Best Answer

HTML stands for hyper-text markup language and is a popular language to create websites with. Think of HTML as another language, just like English or Spanish, which tells the computer how to show and render the website you created.

Although there are alot of other languages the computer understands, most people use HTML since it is more popular (think of the popularity of the English language around the world).

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago
HTML is a language for describing web pages.
  • HTML stands for Hyper Text Markup Language
  • HTML is a markup language
  • A markup language is a set of markup tags
  • The tags describe document content
  • HTML documents contain HTML tags and plain text
  • HTML documents are also called web pages

HTML was initially developed by Tim Berners-Lee, and follows the same format as XML: the Document Object Model.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

HTML stands for HyperText Markup Language.

A typical html file has the following basic structure:

<!DOCTYPE html>

<html>

<head>

<title>Title of the document</title>

</head>

<body>

The content of the document......

</body>

</html>

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does HTML stand for and what is it used for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does HTML stand for as used in emails?

hyper text marketing language


What does the word HTML stand for?

HTML stands 4 "Hypertext Markup Language".It is actually set of markup tags that are used 2 create web pages.


What does h2 stand for in HTML?

in HTML &lt;h2&gt; stands for heading 2


What does HTML stand for and the definition?

HTML stands for "hyper-text markup language".


What does hr stand for in HTML?

Horizontal Rule


What is HTML stand for?

Hypertext Markup Language


What does p stand fro in HTML?

Paragraph.


What does m stand for in HTML?

It stands for markup.


What do the letters ''HTML'' stand for?

HTML stands for HyperText Markup Language.


What is HTML and DHTML?

HTML stands for HyperText Markup Language. DHTML stand for dynamic HyperText Markup Language, however DHTML is not an actual coding language. While both of them used to build web sites, DHTML is typically used to mean the combination of HTML, CSS, JavaScript, and DOM.


What does h1 in HTML stand for?

Heading 1 For example, this would mean that HOME is the first heading in HTML. &lt;html&gt; &lt;body&gt; &lt;h1&gt; HOME &lt;/h1&gt; &lt;/body&gt; &lt;/html&gt;


What does i stand for in HTML?

The &lt;i&gt; tag in HTML is used to offset text that should be displayed in italics. It's a carry-over from early versions of HTML, as its purpose is solely presentational and not semantic. In most cases, the use of the emphasis tag &lt;em&gt; is encouraged in its place.