Basic Html - Study Mode
[#71] In case we want to implement a JavaScript fallback, we would need to create a conditional statement using Modernizr.
Correct Answer
(A) True
Explanation
Solution: Modernizr is a JavaScript library that detects which HTML5 and CSS3 features your visitor’s browser supports.
[#72] Metadata store information about the web page that is not necessarily visible to end users.
Correct Answer
(A) True
Explanation
Solution: Meta tags store information about the web page—known as metadata that is not necessarily visible to end users (unless you reveal the page source code).
[#73] In which part of the HTML metadata is contained?
Correct Answer
(C) head tag
Explanation
Solution: Metadata is data (information) about data. The meta tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.
[#74] Which of the following is not a function of robots meta tag?
Correct Answer
(C) norepeat
Explanation
Solution: Valid values for the “CONTENT” attribute are: “INDEX”, “NOINDEX”, “FOLLOW”, “NOFOLLOW”.
[#75] What is the role of charset attribute? It specifies
Correct Answer
(C) the character encoding for the HTML document
Explanation
Solution: The charset is used to provide the character support.