-
Notifications
You must be signed in to change notification settings - Fork 0
/
testega4.html
53 lines (49 loc) · 1.43 KB
/
testega4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Título da Página</title>
<!-- Link para uma folha de estilos externa -->
<link rel="stylesheet" href="estilos.css">
<!-- Script JavaScript externo -->
<script src="script.js" defer></script>
<!-- Google tag (gtag.js) -->
<script async src="https://nikolawissenklaus.github.io/meugtag.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TR5E2D5Y8N');
function evento(){
gtag('event', 'teste', {
'aaa': 'myAppName',
'bbbb': 'xxxxx'
});
}
</script>
</head>
<body>
<!-- Cabeçalho da página -->
<header>
<h1>Bem-vindo ao meu site</h1>
</header>
<!-- Seção principal do conteúdo -->
<main>
<section>
<h2>Seção 1</h2>
<p>Este é um parágrafo na primeira seção.</p>
</section>
<button onclick="evento()">disparar</button>
<section>
<h2>Seção 2</h2>
<p>Este é um parágrafo na segunda seção.</p>
</section>
<a href="https://nikolawissenklaus.github.io/testega42">Mudar</a>
</main>
<!-- Rodapé da página -->
<footer>
<p>© 2024 Meu Nome. Todos os direitos reservados.</p>
</footer>
</body>
</html>