Unlocking CSS: Learn Through 100 Questions and Answers
1. What does CSS stand for?
➡️ CSS stands for Cascading Style Sheets.
2. How do you add CSS to a webpage?
Inline CSS:
<h1 style="color:blue;">This is a heading</h1>
➡️ Adds CSS directly to an HTML element.
Internal CSS:
<style>
h1 { color: blue;...
codewords.hashnode.dev21 min read