| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <div id="snippet-table">
- <p>The ultimate table of <a href="https://en.wikipedia.org/wiki/List_of_coffee_drinks">coffee drinks</a>:</p>
- <table>
- <thead>
- <tr>
- <th rowspan="2"></th>
- <th scope="col" rowspan="2">☕️ Espresso</th>
- <th scope="colgroup" colspan="2">🥛 Milk</th>
- <th scope="col" rowspan="2">🚰 Water</th>
- </tr>
- <tr>
- <th scope="col">Steamed</th>
- <th scope="col">Foam</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">Cappuccino</th>
- <td>✅ yes</td>
- <td>✅ yes</td>
- <td>✅ yes</td>
- <td>❌ no</td>
- </tr>
- <tr>
- <th scope="row">Macchiato</th>
- <td>✅ yes</td>
- <td>❌ no</td>
- <td>✅ yes</td>
- <td>❌ no</td>
- </tr>
- <tr>
- <th scope="row">Latte</th>
- <td>✅ yes</td>
- <td>✅ yes</td>
- <td>❌ no</td>
- <td>❌ no</td>
- </tr>
- <tr>
- <th scope="row">Americano</th>
- <td>✅ yes</td>
- <td>❌ no</td>
- <td>❌ no</td>
- <td>✅ yes</td>
- </tr>
- </tbody>
- </table>
- </div>
|