HTMLSome Basic HTML Elements Used in the Demos

The Demos-n-Deets assume a basic understanding of HTML. For convenience, I list below the some of the most basic HTML elements used (without explanation) in the demos.

Heading Elements

HTML includes a set of heading elements (<h1>, <h2>, etc.) for structuring pages into sections, and they are well explained on this W3Schools page. Here are a few additional things to note about HTML heading elements:

Paragraph Elements

HTML includes a paragraph element (<p>) for defining the paragraph structure of a page, and it is well explained on this W3Schools page.

List and List-Item Elements

HTML includes elements for displaying unordered lists (<ul>; i.e., bullet lists) and ordered lists (<ol>; i.e., numbered lists), and they are well explained in this W3Schools page.

One thing to note about HTML lists is that they are structured such that, for a given list, list-item elements (<li>) that represent the items of the list are nested inside a parent list element (<ul> or <ol>) that represents the list as a whole. To illustrate, here is the code for an unordered list of colors:

<ul>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ul>

Note how there is a parent <ul> element that contains three <li> elements, one for each color.