What type of stylesheet is used to normalize browser defaults and create a consistent starting point for your styles?
What is a reset stylesheet?
How can you center a block-level element horizontally on the page?
What is using margin: 0 auto;?
What are the two main tags used to define the basic structure of an HTML5 document?
What is <html> and <body>?
How does relative positioning affect the position of an element?
What is It is shifted relative to its normal position in the document flow?
What symbol is used to define styles in a CSS rule?
What is a { curly Brace?
Name three common properties used for defining margins and padding around elements.
What are margin, padding, and border?
How do you create a floating element that wraps text around it?
What is float: left; or float: right;?
What tag is used to define the title of an HTML5 webpage, and where is it typically placed?
What is <title>, placed inside the <head> section ?
How can you absolutely position an element to be completely removed from the normal document flow?
What is using position: absolute;?
How can you specify a color value in CSS?
What is using a color name (e.g., red, blue) or a hex code (e.g., #FF0000) or RGB or HSL etc..
How do you define a font family for an element in CSS?
What is font-family: font_name;?
What CSS property is used to clear the float after a series of floated elements?
What is clear: both;?
How can you embed a video directly into an HTML5 webpage without relying on plugins?
What is using the <video> tag with source elements?
When using absolute positioning, how can you define the top and left position of an element relative to its nearest positioned ancestor?
What is using top: position_value; and left: position_value;?
What property controls the width of an element's content area?
What is width: value; ?
What property controls the background color of an element?
What is background-color: color_value;?
How can you prevent a container element from collapsing if it only contains inline elements?
What is using display: inline-block; on the container?
What attribute is used to specify the source of the content for an <img> or <video> tag?
What is src ?
How can you reference another element on the page to position an absolutely positioned element relative to it?
What is using positioning properties with element selectors (e.g., top: 10px from .reference-element)?
How can you add a border around an element?
What is using border: style color width;?
How can you center text within an inline element like a <span> tag?
What is text-align: center;?
What is the basic principle behind using a grid layout for website design?
What is dividing the page into rows and columns for flexible and responsive layouts?
How can you create a hyperlink to another webpage in HTML5?
What is using the <a> tag with the href attribute (e.g., <a href="https://www.example.com">Link Text</a>) ?
How does the overflow property control how content that overflows the dimensions of its container is handled?
What is Values like hidden, scroll, and auto determine visibility and scrollbars?
What property defines the background image for an element?
What is background-image: url(image_path); ?