CSS
HTML
web page element
Layout & Structure
Web Design Tools
100

What does CSS stand for?

What is Cascading style sheet?

100

What is the basic structure tag for a webpage?

What is the basic structure tag for a webpage? What is the <html> tag?

100

What tag is <img>?

What tag is used to insert an image?

100

What is a common way to divide a webpage into different sections?

What is using the <section> or <div> tags?

100

Name one common web browser.

What are Chrome, Firefox, Safari, or Edge?

200

Where do you link the CSS?

What is The head of the HTML?

200

Name two common heading tags.

 What are <h1>, <h2>, <h3>, <h4>, <h5>, and <h6>?

200

What tag is <a> (anchor tag)?

What tag creates a hyperlink?

200

What CSS property is often used to arrange elements side-by-side?

What CSS property is often float or display: flex or display: grid?

200

What is a basic text editor you can use for web design?

What are Notepad (on Windows) or TextEdit (on Mac)?

300

Name one way you can add CSS to an HTML document.

What are Inline styles (using the style attribute), internal stylesheets (within <style> tags), and external stylesheets (linked via <link>)?

300

What tag is used to create a paragraph of text?

What tag is used to create a paragraph of text? What tag is <p>?

300

What are the rows and columns in a table defined by in HTML?

What are <tr> (table row) and <td> (table data cell)?

300

What is the purpose of a <div> element in HTML?

What is It acts as a container to group other HTML elements for styling or scripting?

300

Name one online platform often used for building websites without coding.

What are Wix, Squarespace, or Weebly?

400

What CSS property controls the text size of an element?

What CSS property is font-size?

400

What attribute is used within an image tag to provide alternative text?

What attribute is alt?

400

Describe two different types of input elements you might find on a web form and their typical uses.

What is <input type="text"> for single-line text input and <textarea> for multi-line text input?

400

Explain the concept of the CSS Box Model and name its four main components.

What is the Box Model consists of the content, padding, border, and margin?

400

What is a "developer console" in a web browser used for?

What is it allows developers to inspect and debug the HTML, CSS, and JavaScript of a webpage?

500

What CSS property is used to change the background color of an element?

What CSS property is background-color?

500

Explain the difference between an ordered list and an unordered list in HTML.

What is  An ordered list (<ol>) displays items in a numbered sequence, while an unordered list (<ul>) uses bullet points.

500

What is the purpose of the <br> tag?

What is it creates a line break?

500

How can you use CSS to make a navigation bar that stays at the top of the screen even when you scroll?

What is you can use CSS with position: fixed; top: 0; left: 0; width: 100%;?

500

Briefly describe the purpose of a version control system like Git in web development.

What is Git is a distributed version control system that helps track changes to code over time, allowing for collaboration and easier management of different versions?