HTML OVERVIEW
Which tag is used to provide keywords for search engines?
Explanation. The <meta> tag stands for metadata, and provides keywords for search engines
Fill in the blank: In HTML5, ______________ allow you to run processing intensive tasks without blocking the user interface.
Web workers provide a way to run other, processing intensive tasks without blocking the main JavaScript code or the user interface
How do you properly recreate the following table using HTML code? Date Language 2014 HTML5 1999 CSS3 1995 JavaScript
Running this code will produce the expected result.
Which of the following statements about document.images is correct?
All the options listed are true. GRADED QUIZ: HTML OVERVIEW 1.Which of the following statements embeds an image in an HTML document? a) <image>link_to_image</image> b) <figure src=”image URL”>image name</figure> c) <img src=”image URL”> (CORRECT) d) <img href=”image URL”>image name</img> Explanation: The <img> element is used for images, with the “src” attribute defining the location of the image. Review the “Common HTML Elements” reading for further review on HTML images.
When defining a hyperlink (<a>), which attribute is used to specify the destination address?
This attribute defines the destination address in a hyperlink. Review the “Common HTML Elements” reading for further review on hyperlinks.
Which tag CANNOT be used as a container for text? I.e. does not use both an opening <> and closing </> tag d )<body>
This is used as a single line break, and therefore does not need to enclose any data within it, making it able to be used without a closing tag. Review the “Common HTML Elements” reading for more practice with common HTML tags.
How are comments written in HTML?
An example of this can be found in the HTML features video.
Which tag is used to denote a cell of data within a table?
This HTML tag stands for "table data" and is used to specify data within a table cell. Review the “Common HTML Elements” reading for further review on working with tables.
Which of the following is NOT an HTML tag?
The <!DOCTYPE> declaration is not an HTML tag. It is an instruction to the browser about what document type to expect. Review the HTML features video for a more detailed explanation of this.
What is the <br> tag used for?
The <br> tag is used to add a line break to your HTML content. Review the “Common HTML Elements” reading for further review about this.
Which of the following denotes the least important heading?
HTML headings go from <h1> to <h6>, to represent a descending order of importance. Review the “Common HTML Elements” reading for further review about headings.
Which tag is used to create an ordered list?
The <ol> tag stands for ordered list, and can be used to create a list with each item denoted with an <li> tag (list item). Review the “Common HTML Elements” reading for more review with this.
Which of the following conditions must be met for scripting to be enabled in browsers? Select one or more options.
Scripting must be enabled in the browser. Review the HTML scripting video. Explanation: The browser in question must support scripting. Review the HTML scripting video.
Ready to test your recall?
Which tag is used to provide keywords for search engines?
How confident are you in this answer?