How can you reference an external SVG file within an HTML document for displaying an icon?
A). Using the <img>
element with the SVG file path
B). Using the <use>
element with the SVG file path
C). Using the <object>
element with the SVG file path
D). Using the <embed>
element with the SVG file path
How can you create a hover effect for an SVG icon using CSS?
A). Apply :hover pseudo-class to the SVG element
B). Use JavaScript for hover effects
C). Add a <hover>
attribute to the SVG icon
D). Apply a class on hover using JavaScript
How can you apply CSS styles to an SVG icon referenced using the <use>
element?
A). Apply styles directly to the <use>
element
B). Apply styles to the referenced SVG file
C). Apply styles to the <svg>
element containing the <use>
element
D). Apply styles to the parent container of the <svg>
element
What is the purpose of the viewBox attribute in SVG icons?
A). Defines the coordinate system and aspect ratio
B). Specifies the fill color of the icon
C). Sets the icon's size
D). Determines the file format of the icon
Which attribute is used in SVG <use>
elements to reference a specific icon within an external SVG file?
A). xlink:href
B). src
C). href
D). file
What technique can be used to change the color of an SVG icon on user interaction?
A). Apply CSS styles on hover or click events
B). Use JavaScript to dynamically change the SVG's color
C). Embed multiple versions of the SVG with different colors
D). Apply inline styles to the SVG icon
Which CSS property is commonly used to style SVG icons in HTML documents?
A). fill
B). background-color
C). border
D). text-decoration
How can you embed an inline SVG icon directly into an HTML document?
A). Using the <svg>
element
B). Using the <img>
element
C). Using the <div>
element
D). Using the <span>
element
How can you ensure cross-browser compatibility when using SVG icons with CSS?
A). Test SVG icons across different browsers and versions
B). Include vendor prefixes for CSS properties
C). Use polyfills for unsupported CSS features
D). Convert SVG icons to raster images
How can you add a title to an SVG icon for accessibility purposes?
A). Using the <desc>
element
B). Using the <span>
element
C). Using the <title>
element
D). Using the <header>
element