Choose the correct HTML tag for the largest heading:
Answers
Explanation:
<title>
above is correct tag for html largest title
Answer:
<h1> </h1>
Explanation:
The correct HTML tag for the largest heading is <h1> Hello Word </h1>.
HTML HEADINGS:-
Search engines use the headings to index the structure and content of you web pages. Users often skim a page by its headings. It is important to use headings to show the document structure. The <h1> to <h6> tags are used to define HTML headings. <h1> defines the largest section and <h6> defines the smallest section heading. <h1> headings should be used for main headings, followed by <h2> headings , then the less important ,h3>, and so on.
ex-
<html>
<head>
<title> brainly </title>
</head>
<body>
<h1> hello world </h1>
<h2> hello dear </h2>
<h3> thanks </h3>
<h4> Nice name </h4>
<h5> Hey man </h5>
<h6> enjoy your day </h6>
</body>
</html>
THANKS.
#SPJ3.
ttps://brainly.in/question/2500440#:~:text=Brainly%20User%20HTML%20refers%20to%20HYPERTEXT%20MARKUP%20LANGUAGE.,an%20language%20which%20is%20used%20to%20create%20webpages.