Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <!-- los comentarios están encerrados-->
  2. <!-- #################### Las Etiquetas ####################-->
  3. <!--Analizaremos el codigo HTML -->
  4. <html>
  5. <head>
  6. <title>Mi sitio web</title>
  7. </head>
  8. <style>
  9. table {
  10. border-collapse: collapse;
  11. }
  12.  
  13. table tr,
  14. table tr th,
  15. table tr td {
  16. border: 1px solid black;
  17. }
  18.  
  19. </style>
  20. <body>
  21. <h1>Hola, Mundo!</h1>
  22. <a href="#">link</a>
  23. <p>parrafo</p>
  24. <p>parrafo</p>
  25. <ul>
  26. <li>
  27. <span>item1</span>
  28. <ol>
  29. <li>
  30. <p>subitem1</p>
  31. </li>
  32. <li>
  33. <p>subitem2</p>
  34. </li>
  35. <li>
  36. <p>subitem3</p>
  37. </li>
  38. </ol>
  39. </li>
  40. <li>
  41. <span>item2</span>
  42. </li>
  43. <li>
  44. <span>item3</span>
  45. </li>
  46. </ul>
  47. <table>
  48. <tr><!-- fila-->
  49. <th>Titulo</th><!--titulo de la tabla-->
  50. </tr>
  51. <tr>
  52. <td>fila</td><!--primera fila-->
  53. </tr>
  54. </table>
  55. <br>
  56. <table>
  57. <tr>
  58. <th>Name</th>
  59. <th>Favorite Color</th>
  60. </tr>
  61. <tr>
  62. <td>Bob</td>
  63. <td>Yellow</td>
  64. </tr>
  65. <tr>
  66. <td>Michelle</td>
  67. <td>Purple</td>
  68. </tr>
  69. </table>
  70. </body>
  71. </html>
  72. <!-- los comentarios están encerrados-->
  73. <!-- #################### Las Etiquetas ####################-->
  74. <!--Analizaremos el codigo HTML -->
  75. <html>
  76. <head>
  77. <title>Mi sitio web</title>
  78. </head>
  79. <style>
  80. table {
  81. border-collapse: collapse;
  82. }
  83.  
  84. table tr,
  85. table tr th,
  86. table tr td {
  87. border: 1px solid black;
  88. }
  89.  
  90. </style>
  91. <body>
  92. <h1>Hola, Mundo!</h1>
  93. <a href="#">link</a>
  94. <p>parrafo</p>
  95. <p>parrafo</p>
  96. <ul>
  97. <li>
  98. <span>item1</span>
  99. <ol>
  100. <li>
  101. <p>subitem1</p>
  102. </li>
  103. <li>
  104. <p>subitem2</p>
  105. </li>
  106. <li>
  107. <p>subitem3</p>
  108. </li>
  109. </ol>
  110. </li>
  111. <li>
  112. <span>item2</span>
  113. </li>
  114. <li>
  115. <span>item3</span>
  116. </li>
  117. </ul>
  118. <table>
  119. <tr><!-- fila-->
  120. <th>Titulo</th><!--titulo de la tabla-->
  121. </tr>
  122. <tr>
  123. <td>fila</td><!--primera fila-->
  124. </tr>
  125. </table>
  126. <br>
  127. <table>
  128. <tr>
  129. <th>Name</th>
  130. <th>Favorite Color</th>
  131. </tr>
  132. <tr>
  133. <td>Bob</td>
  134. <td>Yellow</td>
  135. </tr>
  136. <tr>
  137. <td>Michelle</td>
  138. <td>Purple</td>
  139. </tr>
  140. </table>
  141. </body>
  142. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement