answersLogoWhite

0

Different heading levels of an HTML document?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

<html>

<head>

<title>

<body>

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Different heading levels of an HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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: &lt;center&gt;&lt;h1&gt;Page Heading&lt;/h1&gt;&lt;/center&gt;.


What is the use of h1 tag in an HTML document?

It's used for heading, h1 stands for heading 1.


How many section of HTML document?

There are six headings that are available to be used in HTML. The range from H1 to H6. An H1 is more important then H6 heading. There should only be one H1 heading on any single HTML page.


Explain the different levels of heading used in an HTML document?

HTML defines six levels of headings and seven font sizes. However, the last three levels of headings are fairly useless as headings, because they are smaller that the standard (size 3) font size.


What is h1 in HTML stand for?

H1 is a heading tag in HTML and is the most important heading tag. In a single HTML document there should only be one H1 heading tag. There are a total of six heading tags in HTML, h1, h2, h3, h4, h5, and h6. H1 is the most important and h6 is the least important. These are useful at organizing your content on a web page.


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 is document heading?

The head of a HTML document is where you define your sites title and meta tags, as well as linking to stylesheets. It is also possible to link to JavaScript in the head, but it is best to link them at the bottom of the body.


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: &lt;!DOCTYPE HTML /*Here goes type of the document specification (DTD)*/&gt;


What are the Two main parts of an HTML document?

Heading, denoted by the tages &lt;head&gt; &lt;/head&gt; and body denoted by &lt;body&gt; &lt;/body&gt;


What are the elements of an HTML document?

The elements of an HTML document are:HEADTITLEBODY


What does h2 stand for in HTML?

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


What is the code to center a heading in HTML?

The CENTER tag in HTML is used to center blocks of code within an HTML document. The tag is very easy to use as you only have to open it and close it around the text you want centered. This can be 2 lines of text or an entire webpage. See the example below. &lt;center&gt; Smasher is teaching me HTML &lt;/center&gt; This would take the text and center it on the screen. If you want to center the whole page simply put the open tag at the beginning of the document and the close tag at the end.