What does "URL" stand for?
Uniform Resource Locator
What does CSS stand for?
Cascading Style Sheets
Which HTML tag is used to group block-level content?
A Div
What does HTML stand for?
HyperText Markup Language
What is the purpose of a domain name?
It's the human-readable address of a website
Which symbol is used to select a class in CSS?
.
What does the flex value in display: flex do?
It enables flexible layouts using the flexbox model
Which HTML tag is used to insert an image, and which attribute do you have to use?
<img> and src
What is Git used for?
Version control and tracking changes in code
How do you change the background color of a webpage to blue in CSS?
body { background-color: blue; }
How do you make a layout responsive?
Use media queries and relative units like %, em, rem
What attribute is used to provide alternative text for images?
alt
What does HTTPS mean, and why is it important?
Secure HTTP – it encrypts data for secure communication
What does the !important rule do in CSS?
It forces the style to override other conflicting styles
What is the difference between margin and padding?
Margin is space outside the element, padding is inside
Name the tag and attribute used to create a hyperlink
<a href>
What is an API?
Application Programming Interface – allows programs to interact with each other
What's the difference between id and class selectors in CSS?
id is unique for one element; class can be reused for many elements
What does the position: absolute property do?
Positions an element relative to its closest positioned ancestor
What is the purpose of the <head> section in an HTML document?
To contain metadata and links to resources like CSS or JS