programmingbeginner
HTML & CSS Essentials
Master the fundamentals of web page structure and styling
8 cardsFlashcardMaker0 clones
Clone this Deck & Start StudyingFlashcards (8)
Card 1
What is HTML?
HTML (HyperText Markup Language) is the standard markup language for creating web pages and web applications.
Card 2
What is the difference between div and span?
div is a block-level element (takes full width, starts new line). span is inline (only takes necessary width, stays in line).
Card 3
What is semantic HTML?
Semantic HTML uses meaningful tags (header, nav, article, section, footer) that describe content, improving accessibility and SEO.
Card 4
What is the CSS Box Model?
The box model consists of: content, padding (space inside border), border, and margin (space outside border).
Card 5
What is the difference between class and id in CSS?
class can be used on multiple elements (.) and has lower specificity. id should be unique per page (#) and has higher specificity.
Card 6
What is Flexbox?
Card 7
What is CSS Grid?
Card 8
What is responsive design?