forked from thesam73/wordle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (77 loc) · 3.3 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!--link rel="icon" href="%PUBLIC_URL%/favicon.ico" /-->
<link rel="icon" href="%PUBLIC_URL%/img/ad_appicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Come over daily to enjoy a new WORD each day!" />
<meta name="keywords" content="wordle,unlimited,today,word" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/img/ad_appicon.png" />
<link href="%PUBLIC_URL%/img/ad_appicon.png" rel="icon shortcut" sizes="3232">
<!-- <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=Nunito:wght@700&display=swap" rel="stylesheet"> -->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>iDailyWord</title>
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-220128208-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-220128208-1');
</script> -->
<!-- Global site tag (gtag.js) - Google Ads: 625715352 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-625715352"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-625715352');
</script>
<!-- Event snippet for IDAILYWORD-PV conversion page -->
<script>
gtag('event', 'conversion', {'send_to': 'AW-625715352/uUJfCMSWz6ADEJjRrqoC'});
</script>
<!-- Event snippet for IDAILYWORD-HOME-PAGE-SHARE conversion page
In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. -->
<script>
window.gtag_report_conversion_homepage_share = function(url) {
var callback = function () {
/* if (typeof(url) != 'undefined') {
window.location = url;
} */
};
gtag('event', 'conversion', {
'send_to': 'AW-625715352/CKdaCOjKyqQDEJjRrqoC',
'event_callback': callback
});
return false;
}
</script>
<!-- Event snippet for IDAILYWORD-DATA-SHARE conversion page
In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. -->
<script>
function gtag_report_conversion_data_share(url) {
var callback = function () {
/* if (typeof(url) != 'undefined') {
window.location = url;
} */
};
gtag('event', 'conversion', {
'send_to': 'AW-625715352/p7NtCJrYg6UDEJjRrqoC',
'event_callback': callback
});
return false;
}
</script>
<script>
/(pad|pod|iPad|iPod|iOS|SM-T)/i.test(navigator.userAgent)&&(head=document.getElementsByTagName('head'),viewport=document.createElement('meta'),viewport.name='viewport',viewport.content='target-densitydpi=device-dpi, width=480px, user-scalable=no',head.length>0&&head[head.length-1].appendChild(viewport));
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>