Basic HTML structure?
<!DOCTYPE html>, <html>, <head>, <body>
Basic purpose of CSS
CSS is used to style and layout HTML elements.
What are conditional statements?
They control the flow of execution.
What does HTML stand for?
HyperText Markup Language
What is the difference between semantic and non-semantic HTML elements?
semantic elements describe meaning (<header>, <article>)
What is the Largest heading Tag
<h1>
What is the CSS selector that is used to target an ID?
#idname
What are loops in Python?
Loops execute a block of code repeatedly.
What does CSS stand for?
Cascading Styling Sheets
why are semantic tags important?
They improve accessibility and SEO by helping screen readers and search engines understand content.
What does a hyperlist tag look like?
<a>
Property that changes background color
background-color
What is a function?
A block of reusable code.
What is python used for?
Web development, data analysis, automation, AI, and games.
Difference between <section>, <article>, and <div>?
<section>: themed groups
<article>: standalone content
<div>: generic container
Purpose of the <p> tag
It defines a paragraph of text
What is a CSS selector
A selector chooses which HTML elements the CSS rules apply to
What is a dictionary?
A collection of key-value pairs.
What are variables?
Containers for storing data.
Purpose of the alt attributes?
Provides text for accessibility and when images fail to load.
What the <title> element does
Its sets the text shown in the browser tab
color
What is an interpreted language?
An interpreted language executes code line by line at runtime rather than compiling it first.
What does <!DOCTYPE html> mean?
It tells the web browser to use modern web standards (HTML5) to render the page.
How do HTML forms work?
They collect input and send data to a server using an action URL.