Advertisement
alexappelt

Untitled

Jul 8th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.     <head>
  5.     <title>Meu Site</title>    
  6.     <meta charset="utf-8">
  7.     </head>
  8.  
  9.  
  10.     <body>
  11.  
  12. <h1>Lista não ordenada</h1>
  13. <!--Tipos: circle,disc,square -->
  14. <ul type="disc">
  15.  
  16.     <li>Notebook</li>
  17.     <li>Roteador</li>
  18.     <li>Contatos</li>
  19.  
  20. </ul>
  21.  
  22. <h2>Lista Ordenada</h2>
  23. <!--Tipos: 1, A , I , i -->
  24. <ol type="i">
  25. <li>Qual sua cor favorita?</li>
  26. <li>Qual sua comida favorita?</li>
  27. <li>Quantos anos voce tem?</li>
  28. </ol>
  29.  
  30.  
  31.  
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement