HTML stands for this.
What is Hypertext Markup Language
CSS stands for this?
What is Cascading Style Sheets?
JavaScript is used for this.
What is to add interactivity and dynamic behavior to web pages?
Web browsers are this.
What is a software application used to access and view websites?
What is the <canvas> element used for?
To draw graphics on the fly via JavaScript.
What is the purpose of HTML?
To structure content on the web
How can you apply CSS to HTML?
Inline styles, internal stylesheets, or external stylesheets.
Name a way to declare a variable in JavaScript
Using var, let, or const
What is the function of a web server?
To store, process, and deliver web pages to clients.
What new input types were introduced in HTML5?
date, email, url, range, email, color, search, number, tel
Name one HTML element used for images.
<img>
Name one property you can use in CSS.
color, font-size, margin
What does theconsole.log()function do?
Outputs messages to the web console for debugging purposes.
Define the term "responsive design."
A web design approach that makes web pages render well on a variety of devices and window sizes.
What does the <video> tag do?
Embeds video content in a web page.
What does the<head>tag do?
Contains meta-information about the document, such as title and links to stylesheets.
What is the box model?
A model that describes the layout of elements, including content, padding, border, and margin.
What is an event in JavaScript?
An action that occurs in the browser, such as a mouse click or keyboard input.
What is the purpose of a URL?
To specify the address of a resource on the internet.
Explain the purpose of the <audio> tag.
Embeds audio content in a web page.
What is the structure of an HTML document?
It starts with a<!DOCTYPE html>declaration, followed by<html>,<head>, and<body>tags.
How does CSS specificity work?
It determines which styles are applied when multiple rules match the same element, based on their importance and specificity levels.
Explain the difference between == and === in JavaScript.
== checks for value equality,
while === checks for both value and type equality.
Name one popular web development framework.
React, Angular, Vue.js, Node.js, and Express.js
How does local storage work in HTML5?
It allows web applications to store data locally within the user's browser.