What does CSS stand for?
What is Cascading style sheet?
What is the basic structure tag for a webpage?
What is the basic structure tag for a webpage? What is the <html> tag?
What tag is <img>?
What tag is used to insert an image?
What is a common way to divide a webpage into different sections?
What is using the <section> or <div> tags?
Name one common web browser.
What are Chrome, Firefox, Safari, or Edge?
Where do you link the CSS?
What is The head of the HTML?
Name two common heading tags.
What are <h1>, <h2>, <h3>, <h4>, <h5>, and <h6>?
What tag is <a> (anchor tag)?
What tag creates a hyperlink?
What CSS property is often used to arrange elements side-by-side?
What CSS property is often float or display: flex or display: grid?
What is a basic text editor you can use for web design?
What are Notepad (on Windows) or TextEdit (on Mac)?
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>)?
What tag is used to create a paragraph of text?
What tag is used to create a paragraph of text? What tag is <p>?
What are the rows and columns in a table defined by in HTML?
What are <tr> (table row) and <td> (table data cell)?
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?
Name one online platform often used for building websites without coding.
What are Wix, Squarespace, or Weebly?
What CSS property controls the text size of an element?
What CSS property is font-size?
What attribute is used within an image tag to provide alternative text?
What attribute is alt?
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?
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?
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?
What CSS property is used to change the background color of an element?
What CSS property is background-color?
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.
What is the purpose of the <br> tag?
What is it creates a line break?
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%;?
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?