Advertisement
am_dot_com

SW 2022-03-04

Mar 4th, 2022 (edited)
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Listas</title>
  6. </head>
  7. <body>
  8. <h1>Listas em HTML</h1>
  9. <h2>Definition lists <mark>dl</mark> -
  10. para definições
  11. </h2>
  12. <h3>Exemplos:</h3>
  13. <dl>
  14. <dt>Saco</dt><!-- def term-->
  15. <dd>Objeto capaz transportar outros</dd><!-- def data-->
  16.  
  17. <dt>Ser vivo</dt>
  18. <dd>Entidade biológica capaz de se reproduzir pelos seus próprios recursos celulares.</dd>
  19. </dl>
  20. <hr><!-- quebra semântica -->
  21. <h2>Ordered lists <mark>ol</mark> -
  22. para listas com ordem
  23. </h2>
  24. <h3>Exemplos:</h3>
  25. <h4>Maiores economias do mundo, pelo PIB</h4>
  26. <ol>
  27. <li>EUA</li><!-- list item -->
  28. <li>China</li>
  29. <li>Japan</li>
  30. <li>Germany</li>
  31. </ol>
  32.  
  33. <hr><!-- outro assunto -->
  34. <h2>Unordered lists <mark>ul</mark> -
  35. para listas onde a ordem não é relevante
  36. </h2>
  37. <h3>Exemplos:</h3>
  38. <h4>Frutas que aprecio:</h4>
  39. <ul>
  40. <li>Morangos</li><!-- list item -->
  41. <li>Laranjas</li>
  42. <li>Maçãs</li>
  43. </ul>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement