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
True or False: Heading elements may be nested within header elements.
True
Which of the following are HTML5 semantic tags? Select all that apply.
footer, header, nav
Which of the following statements are true about HTML Entities? Select all that apply.
Special symbols/characters that start with & and end with ;
True or False? The Internet and the WWW are the same thing.
False
Which of the following are examples of container tags? Select all that apply.
article, h3, p
Which of the following are examples of empty/void element tags
br, hr, img, meta
File path for logo.png located in a sub-directory named “images”
images/logo.png
File path for services.html webpage in the higher level directory.
../services.html
File path for product1.jpg in a different directory, at the same level named images
../images/product1.jpg