-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.35 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.35 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="canonical" href="https://onlinesmithchart.com/" />
<meta name="author" content="Will Kelsey" />
<meta name="description" content="Free Online Smith Chart Tool" />
<meta
name="keywords"
content="Matching,Impedance,Smith,Chart,Tool,Calculator,Free,Online,Interactive,Javascript,50ohm,50,Circle,Windows,Mac,Android,IOS"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Smith Chart Online</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Free Online Smith Chart Tool",
"url": "https://onlinesmithchart.com/",
"description": "Use this free online tool to visualize and calculate impedance matching using a Smith Chart"
}
</script>
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6K2DR6S7BW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-6K2DR6S7BW");
</script>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>