FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WEB PAGE DESIGN AND PROGRAMMING LANGUAGES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
HTML tag that defines a large heading.
A
<h1>
B
<p1>
C
<l1>
D
<b1>
Explanation: 

Detailed explanation-1: -HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading.

Detailed explanation-2: -The heading elements are H1, H2, H3, H4, H5, and H6 with H1 being the highest (or most important) level and H6 the least.

Detailed explanation-3: -<h1> defines the most important heading. <h6> defines the least important heading. Note: Only use one <h1> per page-this should represent the main heading/subject for the whole page. Also, do not skip heading levels-start with <h1>, then use <h2>, and so on.

Detailed explanation-4: -h1 is the largest heading tag and h6 is the smallest one (h1 > h2 > h3 > h4 > h5 > h6).

Detailed explanation-5: -Correct HTML tag for the largest heading is <h1>. In an HTML page, the <h1> to <h6> tags are used to define headers. HTML header tags distinguish a page’s headers (h1) and sub-headings (h2-h6) from the rest of the content. The largest heading is defined by <h1>, while the smallest heading is defined by <h6>.

There is 1 question to complete.