Skip to content

Commit 8d448b1

Browse files
committed
Adding gtag
1 parent 18e06cd commit 8d448b1

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

index.html

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
@@ -21,11 +21,22 @@
2121
"name": "Free Online Circuit Solver Tool",
2222
"url": "https://onlinecircuitsolver.com/",
2323
"description": "Build schematics and find their transfer functions. See the Laplace equation and plot it vs frequency. Supports resistors, capacitors, inductors, op-amps, and more.",
24-
"applicationCategory": "Utility",
24+
"applicationCategory": "Utility"
2525
}
2626
</script>
2727
<title>Circuit Solver</title>
2828
</head>
29+
<!-- Google tag (gtag.js) -->
30+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EKCV177E7P"></script>
31+
<script>
32+
window.dataLayer = window.dataLayer || [];
33+
function gtag() {
34+
dataLayer.push(arguments);
35+
}
36+
gtag("js", new Date());
37+
38+
gtag("config", "G-EKCV177E7P");
39+
</script>
2940
<body>
3041
<div id="root"></div>
3142
<script type="module" src="/src/main.jsx"></script>

0 commit comments

Comments
 (0)