| 1234567891011121314151617181920 |
- <div id="snippet-lists-basic">
- <h2>Unordered list</h2>
- <p>Such a list can represent items where the order is not important, e.g. a list of ingredients required for preparing a dish or a drink.</p>
- <p>Ingredients required for making a coffee:</p>
- <ul>
- <li>15g coffee ground</li>
- <li>a cup</li>
- <li>water</li>
- </ul>
- <h2>Ordered list</h2>
- <p>The ordered list can be used if the order of the items matters, e.g. when describing an instruction. The order of steps that must be done is important.</p>
- <p>How to prepare the coffee?</p>
- <ol>
- <li>Gather the ingredients</li>
- <li>Put 15g of the coffee ground into the cup</li>
- <li>Boil 200ml of water</li>
- <li>Pour water into a cup</li>
- <li>Optional: add milk as you wish</li>
- </ol>
- </div>
|