Skip to content

Commit

Permalink
add gtag in document index
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Jul 4, 2024
1 parent 87d1a8d commit e06e987
Showing 1 changed file with 26 additions and 11 deletions.
37 changes: 26 additions & 11 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AngularTechsLogos</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
<head>
<meta charset="utf-8" />
<title>angular-techs-logos</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta name="author" content="lucasferreiralimax" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-BTW7RWSDL2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());

gtag("config", "G-BTW7RWSDL2");
</script>
</head>
<body>
<app-root></app-root>
</body>
</html>

0 comments on commit e06e987

Please sign in to comment.