GENERAL
CSS
LAYOUT
HTML
100

What does "URL" stand for?

Uniform Resource Locator

100

What does CSS stand for?

Cascading Style Sheets

100

Which HTML tag is used to group block-level content?

A Div

100

What does HTML stand for?  

HyperText Markup Language

200

What is the purpose of a domain name?

It's the human-readable address of a website

200

Which symbol is used to select a class in CSS?

.

200

What does the flex value in display: flex do?

It enables flexible layouts using the flexbox model

200

Which HTML tag is used to insert an image, and which attribute do you have to use?

<img> and src

300

What is Git used for?

Version control and tracking changes in code

300

How do you change the background color of a webpage to blue in CSS?

body { background-color: blue; }

300

How do you make a layout responsive?

Use media queries and relative units like %, em, rem

300

What attribute is used to provide alternative text for images?

alt

400

What does HTTPS mean, and why is it important?

Secure HTTP – it encrypts data for secure communication

400

What does the !important rule do in CSS?

It forces the style to override other conflicting styles

400

What is the difference between margin and padding?

Margin is space outside the element, padding is inside

400

Name the tag and attribute used to create a hyperlink

<a href>

500

What is an API?

Application Programming Interface – allows programs to interact with each other

500

What's the difference between id and class selectors in CSS?

id is unique for one element; class can be reused for many elements

500

What does the position: absolute property do?

Positions an element relative to its closest positioned ancestor

500

What is the purpose of the <head> section in an HTML document?

To contain metadata and links to resources like CSS or JS