Welcome to my Lists page!

Welcome to my notes hompage from IST coding class /w3schools . Each link will take you to a brand new topic. ENJOY!

What are the 3 types of lists?
The three main types of lists, especially in web development (HTML), are Unordered Lists (bulleted, no specific sequence), Ordered Lists (numbered or lettered, sequence matters), and Description Lists (term/definition pairs).
What style property can add to change the list item marker for an Unordered list?
You can add the list-style-type property in your CSS file or directly inline in your HTML.
dt>What attribute can you add to change the list item marker for an Ordered list?
To change the marker style for an HTML ordered list (<ol>), use the type attribute (e.g., type="A" for letters, type="i" for Roman numerals)

Click here to go back to the Notes homepage.