-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 2.79 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 2.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Marriage Tax Calculator — Marriage Penalty & Bonus | PolicyEngine</title>
<meta name="description" content="Calculate how marriage affects your taxes and government benefits. See your marriage penalty or bonus across income levels for any US state.">
<link rel="canonical" href="https://policyengine.github.io/marriage/">
<meta name="theme-color" content="#319795">
<meta name="google-site-verification" content="e0FQ3UjJN2lisTAFsgKrfoIO9BbU6nTO2sROpKntyAo" />
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="Marriage Tax Calculator — Marriage Penalty & Bonus">
<meta property="og:description" content="Calculate how marriage affects your taxes and government benefits. See your marriage penalty or bonus across income levels for any US state.">
<meta property="og:image" content="https://policyengine.github.io/marriage/og-image.png">
<meta property="og:url" content="https://policyengine.github.io/marriage/">
<meta property="og:site_name" content="PolicyEngine">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Marriage Tax Calculator — Marriage Penalty & Bonus">
<meta name="twitter:description" content="Calculate how marriage affects your taxes and government benefits. See your marriage penalty or bonus across income levels for any US state.">
<meta name="twitter:image" content="https://policyengine.github.io/marriage/og-image.png">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Marriage Tax Calculator",
"description": "Calculate how marriage affects your taxes and government benefits. See your marriage penalty or bonus across income levels for any US state.",
"url": "https://policyengine.github.io/marriage/",
"applicationCategory": "FinanceApplication",
"operatingSystem": "Web",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"author": {
"@type": "Organization",
"name": "PolicyEngine",
"url": "https://policyengine.org"
}
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>