Verified
How can you make a word "dance" with HTML?
✔✔While HTML can’t make text literally dance, you can wrap it in a `<span>` tag and use CSS
animations to create movement.
What's the HTML tag to give a "surprise message" that only shows up when the user hovers?
✔✔Wrap the hidden message in a `<span>` with the CSS `display: none`, then show it with a
hover effect on the parent element.
How do you make a button look like a shiny candy button in HTML?
✔✔Use the `<button>` tag and give it a gradient style and a slight shadow with CSS for a candy-
like effect.
What tag would you use to set the scene for a "mystery reveal" paragraph?
✔✔The `<details>` tag allows content to be hidden until the user clicks to reveal it, perfect for a
"mystery reveal."
1
, How do you make an image "speak" its description for accessibility?
✔✔Use the `alt` attribute in the `<img>` tag to provide a text description that screen readers can
speak aloud.
What element lets you put a "secret message" in your HTML without it appearing on the page?
✔✔The `<!-- comment -->` syntax allows you to add comments that are invisible to users but
readable in the HTML source.
How can you create a "magic" hyperlink that jumps to another section on the same page?
✔✔Use an `<a href="#section-id">` link, where `#section-id` corresponds to the `id` of the target
element.
What tag lets you create a "treasure map" where clicking an area leads to different links?
✔✔Use the `<map>` and `<area>` tags to create clickable regions on an image, like a treasure
map.
How do you create a "glowing" text effect in HTML?
✔✔Use the `<span>` tag for the text, then add a CSS `text-shadow` effect to make it appear to
glow.
2