Please answer fast
please
Answers
(a)The <html> element is the root element and it defines the whole HTML document. It has a start tag <html> and an end tag </html>.
(b) The <title> HTML element defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text; tags within the element are ignored.
(c)The <body> element contains the entire content of a webpage. It must be the second element inside of the parent <html> element, following only the <head> element.
(d)In the body tag, specify a background image in the background attribute by passing the URL of the image or location path.
Adding CSS styling properties.
Syntax:
<body background = "URL or path" >
(e) To set the background color in HTML, use the style attribute. The style attribute specifies an inline style for an element. The attribute is used with the HTML <body> tag, with the CSS property background-color. HTML5 do not support the <body> tag bgcolor attribute, so the CSS style is used to add background color.
(f)The HTML <font> color Attribute is used to specify the text color inside the <font> element. Attribute Values: color_name: It sets the text color by using color name. For example: “red”.