Verified Answers
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