Name the HTML tag/attribule which:
(o defines header of largest size
(b) uc fines comment
(c) defines paragraph
(c) specifies the color of the entire web page
(e; specifies the content of a document
(1) defines a single line break
1.) defines horizontal line break
C) sets the background to a specific color
(1) specifies the top margin of the webpage in piyols
Informs the browser that it is dealing with a HTML document
Answer should be correct otherwise it will be reported
100 points for this answer
Answers
Answer:
(a) document <h1> defines largest heading.
(b) The <! -- --> is an HTML comment tag.
(c) The HTML <p> element represents a paragraph.
(d) The <font> tag was used in HTML 4 to specify the font face, font size, and color of text.
(e) The <main> tag specifies the main content of a document.
(1) A single break that returns the cursor to the next line and does not create a new paragraph.
1.) The <hr> tag defines a thematic break in an HTML page (e.g. a shift of topic). The <hr> element is most often displayed as a horizontal rule that is used to separate content (or define a change) in an HTML page.
C) The <bgcolor> is the attribute to set the background color of an HTML element.
(1) The rule would eliminate the top margin of a document: BODY { margin-top: 0 } .
Hope it will help you...