Advertisement
Jakeukalane

queen

Jun 16th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es-ES">
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Grupo de música - Queen</title>
  7. <script>
  8. // encabezados
  9. function enc() {
  10. var enc = document.querySelectorAll("h1,h2").length;
  11. alert(enc);
  12. console.log(alert);
  13. }
  14. // filas
  15. function filas() {
  16. var filas = document.getElementById("exitos").getElementsByTagName("tr").length;
  17. alert(filas);
  18. }
  19.  
  20. // segundo h2
  21. function enc2() {
  22. var enc2 = document.getElementsByTagName("h2");
  23. alert(enc2[1].innerHTML);
  24. }
  25. // hipervinculo
  26. function hiper() {
  27. var hiper = document.getElementsByTagName("a")[0].href;
  28. alert(hiper);
  29. }
  30. </script>
  31. </head>
  32.  
  33. <body>
  34. <h1>Queen</h1>
  35. <p>Banda británica de rock formada en 1970 en Londres.</p>
  36. <img src="imagenes/queen.jpg" width="400" height="200" alt="Fotografía de los componentes del grupo Queen.">
  37. <h2 class="h">Integrantes del grupo</h2>
  38. <ul>
  39. <li>Brian May</li>
  40. <li>Freddie Mercury</li>
  41. <li>John Deacon</li>
  42. <li>Roger Taylor</li>
  43. </ul>
  44. <h2 class="h">Discografía</h2>
  45. <table id="exitos">
  46. <caption>Grandes éxitos de Queen</caption>
  47. <thead>
  48. <tr>
  49. <th>Año</th>
  50. <th>Disco</th>
  51. </tr>
  52. </thead>
  53. <tfoot>
  54. <tr>
  55. <td>"A Kind of Magic" fue el álbum más exitoso.</td>
  56. </tr>
  57. </tfoot>
  58. <tbody>
  59. <tr>
  60. <td>1975</td>
  61. <td>A Night at the Opera</td>
  62. </tr>
  63. <tr>
  64. <td>1986</td>
  65. <td>A Kind of Magic</td>
  66. </tr>
  67. <tr>
  68. <td>1989</td>
  69. <td>The Miracle</td>
  70. </tr>
  71. </tbody>
  72. </table>
  73. <h2 class="h">Sitio web oficial</h2>
  74. <a href="http://www.queenonline.com/" target="_blank">www.queenonline.com</a>
  75. <hr>
  76. <!-- añado botones -->
  77. <input type="submit" value="Encabezados" onclick="enc()"/>
  78. <input type="submit" value="Filas" onclick="filas()"/>
  79. <input type="submit" value="sgundo h2" onclick="enc2()"/>
  80. <input type="submit" value="hipervinculo" onclick="hiper()"/>
  81. </body>
  82.  
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement