π Self-Evaluation: Multiple Choice Assessment
In this lesson, you will attempt a multiple-choice assessment to evaluate yourself on HTML concepts and see where you stand.
We'll cover the following...
HTML5: Testing a myriad of concepts
What is the difference between block and inline elements?
Block elements allow you to section your web pageβs content into separate, logical divisions, while inline elements keep all the data in one section.
Inline elements do not render as anything special on the web page and are mainly used to separate content into distinct groups for organization or styling purposes.
Block-level HTML elements take up the full width of a web page, essentially creating a βblockβ around the content you place within that element. Block-level elements, by default, also start on a new line.
βInlineβ elements, like the name suggests, do not take up the full width of a webpage and are generally in-line with text content. Inline elements also do not start a new line when rendered in the browser.
Both C and D
...