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