index.html 688 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Curso Golang</title>
  8. </head>
  9. <body>
  10. <h1>Teste servidor Go com página WEB. </h1>
  11. <h3 style="color: blueviolet;">Seja Bem vindo {{ .Nome }} - {{ .Email }} </h3>
  12. <marquee>
  13. <p>Este arquivo será usado como base simulando uma página WEB e será renderizado pelo Golang</p>
  14. </marquee>
  15. <button id="botao">Clique em mim.</button>
  16. </body>
  17. <script>
  18. let botao = document.getElementById("botao")
  19. botao.onclick = function(){
  20. alert("Botão clicado. ")
  21. }
  22. </script>
  23. </html>