What 2 code snippets can be used to increase the weight of a text's font to indicate that
it is important? << correct 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) << correct answer >> <p>I<strong>love</strong>you</p>
what code snipped indicates quotation marks? << correct answer >> <q></q>
<p>She said,<q>Go take the garbage out</q></p>
what code snippet indicates a page break? << correct answer >> <br>
Radio Button << correct answer >>
Which attribute is used by all form fields? << correct answer >> name
which image file supports transparency? << correct answer >> PNG
Which tag is optional when creating an HTML table? << correct answer >> <caption>
What is true of container tags and empty tags? << correct answer >> Container tags
come in pairs and empty tags stand alone
Which two attributes should be used within an image tag? << correct answer >> alt and
src
Give an example of a semantic element << correct answer >> <nav>
what tag does not apply a default format or style? << correct answer >> <div>
which tag should contain introductory content? << correct answer >> <header>
What is the way <a> tag can be used? << correct answer >> Linking to a specific
location on the same page
Which pair of characteristics is true of XML? << correct answer >> Case sensitive and
disallows errors
Which pair of characteristics differentiate HTML from XML? << correct answer >> HTML
is static
XML is extensible
,XML (Extensible Markup Language) << correct answer >> Is used by businesses to
interchange web site data with many different types of applications
External CSS << correct answer >> Allows element style updates to multiple pages
from a single location
Internal CSS << correct answer >> What echnique for implementing CSS in an HTML
file is used for page-level style declarations?
<link> << correct answer >> Tag used to reference an external CSS sheet within an
HTML document
Which style rule selects and formats every childless paragraph element? << correct
answer >> p:empty {
Which CSS selector styles the first character of a sentence differently? << correct
answer >> ::first-letter
Which CSS selector represents the first-child pseudo-class selector? << correct answer
>> :first-child
Name a unit of absolute size << correct answer >> px
Which CSS selector is used to style general sibling elements? << correct answer >> ~
What should be used to optimize a website for viewing across different devices and
improve a user's experience? << correct answer >> Responsive design
What are two unique characteristics that define a polygon hot spot? << correct answer
>> Begins and ends at the same pair of coordinates
Contains many pairs of coordinates
Site Map << correct answer >> Helps users find content throughout a website
Which pseudo-class changes the background color of the link on mouse-over? <<
correct answer >> a:hover
Which pseudo-class can be used to change the default color of a link after it has been
clicked by the user? << correct answer >> a:visited
Which unit of measurement sets the text size of the <div> element to be double that of
the <html> element? << correct answer >> rem
Which two units make the size of an element responsive to screen size? << correct
answer >> vw
, 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? << correct
answer >> Responsive Design
Which CSS properties are used to specify the amount of space between grid columns
and rows? << correct answer >> column-gap and row-gap
Which CSS rule should be used to create three columns of equal width? << correct
answer >> grid-template-columns: 1fr 1fr 1fr;
What is the global setting in Bootstrap that affects the overall text appearance on a
website? << correct answer >> Typography
Which Bootstrap installation option avoids bundling Bootstrap with the source code of a
website? << correct answer >> CDN
Which type of Bootstrap library includes several symbols that can be used within a web
page? << correct answer >> Icons
Which Firefox Developer Tools tab is used to view and edit cookies on a site? <<
correct answer >> Storage
Which Firefox Developer Tools tab displays how long a request took for each site
resource type? << correct answer >> Network
What can be used to instantly apply changes to applied styles? << correct answer >>
Browser 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? << correct answer >> Inspector
Which Chrome DevTools tab is accessed to view logged JavaScript messages and run
JavaScript? << correct answer >> Console
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>