๐ Instructions
Answer the following multiple-choice questions to test your understanding of HTML and CSS fundamentals. Click "Show Answer" to reveal the correct response.
1. What does HTML stand for?
- A. Hyper Tool Markup Language
- B. Hyperlinks and Text Markup Language
- C. HyperText Markup Language
- D. Home Tool Markup Language
2. Which tag is used to link an external CSS file?
- A. <style>
- B. <script>
- C. <css>
- D. <link>
3. What is the default display value of a <div> element?
- A. inline
- B. block
- C. flex
- D. inline-block
4. What does the CSS property margin: 0 auto; usually do?
- A. Sets the top and bottom margins to 0 and centers the element horizontally
- B. Removes all margins
- C. Sets margin to automatic values
- D. Adds zero margin
5. Which media query targets devices with a max screen width of 768px?
- A. @media screen and (min-width: 768px)
- B. @media only screen and (width: 768px)
- C. @media screen and (max-width: 768px)
- D. @media all and (min-width: 768px)