Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Nodos</title>
- </head>
- <body>
- <h1 id="texto1">Primer Texto</h1>
- <p id="texto2">Segundo Texto</p>
- <div>
- <h1>Elementos</h1>
- <p>Nombre:</p>
- <input type="text">
- <button>Aceptar</button>
- </div>
- <button onclick="mostrarTipoElementos();">Ver tipo de Elementos</button>
- <button onclick="mostrarPrimerElemento();">Primer Elemento</button>
- <button onclick="mostrarUltimoElemento();">Último Elemento</button>
- <p></p>
- <script src="js/app.js" type="text/javascript"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement