correct
What 2 code snippets can be used to increase the weight of a text's font to indicate that
it is important? - answer<p><strong>
<p><b>
what code snippet can be used to style a word in bold? Example, I love you. (with LOVE
in bold) - answer<p>I<strong>love</strong>you</p>
what code snipped indicates quotation marks? - answer<q></q>
<p>She said,<q>Go take the garbage out</q></p>
what code snippet indicates a page break? - answer<br>
Radio Button - answer
Which attribute is used by all form fields? - answername
which image file supports transparency? - answerPNG
Which tag is optional when creating an HTML table? - answer<caption>
What is true of container tags and empty tags? - answerContainer tags come in pairs
and empty tags stand alone
Which two attributes should be used within an image tag? - answeralt and src
Give an example of a semantic element - answer<nav>
what tag does not apply a default format or style? - answer<div>
which tag should contain introductory content? - answer<header>
What is the way <a> tag can be used? - answerLinking to a specific location on the
same page
Which pair of characteristics is true of XML? - answerCase sensitive and disallows
errors
Which pair of characteristics differentiate HTML from XML? - answerHTML is static
XML is extensible
,XML (Extensible Markup Language) - answerIs used by businesses to interchange web
site data with many different types of applications
External CSS - answerAllows element style updates to multiple pages from a single
location
Internal CSS - answerWhat echnique for implementing CSS in an HTML file is used for
page-level style declarations?
<link> - answerTag used to reference an external CSS sheet within an HTML document
Which style rule selects and formats every childless paragraph element? -
answerp:empty {
Which CSS selector styles the first character of a sentence differently? - answer::first-
letter
Which CSS selector represents the first-child pseudo-class selector? - answer:first-child
Name a unit of absolute size - answerpx
Which CSS selector is used to style general sibling elements? - answer~
What should be used to optimize a website for viewing across different devices and
improve a user's experience? - answerResponsive design
What are two unique characteristics that define a polygon hot spot? - answerBegins and
ends at the same pair of coordinates
Contains many pairs of coordinates
Site Map - answerHelps users find content throughout a website
Which pseudo-class changes the background color of the link on mouse-over? -
answera:hover
Which pseudo-class can be used to change the default color of a link after it has been
clicked by the user? - answera:visited
Which unit of measurement sets the text size of the <div> element to be double that of
the <html> element? - answerrem
Which two units make the size of an element responsive to screen size? - answervw
vh
, A website developer needs to create a website that looks suitable on mobile, tablet, and
desktop devices. Which type of web design should the developer use? -
answerResponsive Design
Which CSS properties are used to specify the amount of space between grid columns
and rows? - answercolumn-gap and row-gap
Which CSS rule should be used to create three columns of equal width? - answergrid-
template-columns: 1fr 1fr 1fr;
What is the global setting in Bootstrap that affects the overall text appearance on a
website? - answerTypography
Which Bootstrap installation option avoids bundling Bootstrap with the source code of a
website? - answerCDN
Which type of Bootstrap library includes several symbols that can be used within a web
page? - answerIcons
Which Firefox Developer Tools tab is used to view and edit cookies on a site? -
answerStorage
Which Firefox Developer Tools tab displays how long a request took for each site
resource type? - answerNetwork
What can be used to instantly apply changes to applied styles? - answerBrowser
developer tools
A website developer identifies an issue with a CSS property value taking precedence
over an element. Which Firefox Developer Tools tab should the developer access to
review CSS declaration precedence? - answerInspector
Which Chrome DevTools tab is accessed to view logged JavaScript messages and run
JavaScript? - answerConsole
Use the given HTML document to answer the following question:
<!DOCTYPE html>
<html>
<body>
<h1><header>This is the introduction statement</h1>
</header>
<p>This is the story I am telling</p>
</body>
</html>