HTML5 Coding Flashcards
The ___ element is used to contain meta tags, links to style sheets, and the title element.
<head>...</head>
The ___ declaration identifies the version of HTML used to create the webpage.
doctype
The ___ element is used to specify information about the document, such as a character set, author, and viewport.
<meta></meta>
The ___ element contains the entire document code.
<html>...</html>
The ___ element is used to reference an external style sheet.
<link...>
</link...>
The ___ element identifies the document title.
<title>...</title>
The ___ element contains all visible webpage content.
<body>...</body>
Identify the attribute: <p class ="special">Weekly Special</p>
class
Identify the value: <p class ="special">Weekly Special</p>
special
True or False? HTML comments should be used to inform others about important elements used with in the webpage code.
True
True or False? HTML comments should be used to ensure that the addition of random white space will not affect rendering in browsers.
False
True or False? HTML comments can be used to remind yourself why you inserted a particular piece of code.
True
True or False? HTML comments can be used to disable code to see how a page will appear without a particular markup element.
True
Which of the following are block-level elements? Select all the apply.
div, footer, h1, hr, p
True or False? Head elements are the same as header elements
False