Advertisement
Fhernd

index.html

Nov 7th, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Nodos</title>
  6. </head>
  7. <body>
  8.  
  9. <h1 id="texto1">Primer Texto</h1>
  10.  
  11. <p id="texto2">Segundo Texto</p>
  12.  
  13. <div>
  14.     <h1>Elementos</h1>
  15.     <p>Nombre:</p>
  16.     <input type="text">
  17.     <button>Aceptar</button>
  18. </div>
  19.  
  20. <button onclick="mostrarTipoElementos();">Ver tipo de Elementos</button>
  21. <button onclick="mostrarPrimerElemento();">Primer Elemento</button>
  22. <button onclick="mostrarUltimoElemento();">Último Elemento</button>
  23. <p></p>
  24.  
  25. <script src="js/app.js" type="text/javascript"></script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement