-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathindex.html
86 lines (76 loc) · 3.65 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
85
86
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GoogleMapsAutocomplete</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description"
content="Autocomplete input component and directive for google-maps built with angular and material design"/>
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@anthonynahas">
<meta name="twitter:title" content="@angular-material-extensions/google-maps-autocomplete">
<!-- Page description less than 200 characters -->
<meta name="twitter:description"
content="Autocomplete input component and directive for google-maps built with angular and material design">
<meta name="twitter:creator" content="@anthonynahas">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image"
content="https://@angular-material-extensions.github.io/password-strength/assets/logo.svg">
<!-- Open Graph data -->
<meta property="og:title" content="@angular-material-extensions/google-maps-autocomplete"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="https://angular-material-extensions.github.io/google-maps-autocomplete"/>
<meta property="og:image"
content="https://@angular-material-extensions.github.io/password-strength/assets/logo.svg"/>
<meta property="og:description"
content="Autocomplete input component and directive for google-maps built with angular and material design"/>
<meta property="og:site_name" content="@angular-material-extensions/google-maps-autocomplete"/>
<!-- MANIFEST-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="manifest" href="assets/manifest.json">
<link rel="mask-icon" href="assets/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/favicon.ico">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="msapplication-config" content="assets/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-114342493-8"></script>-->
<!-- <script>-->
<!-- window.dataLayer = window.dataLayer || [];-->
<!-- function gtag() {-->
<!-- dataLayer.push(arguments);-->
<!-- }-->
<!-- gtag('js', new Date());-->
<!-- gtag('config', 'UA-114342493-8');-->
<!-- </script>-->
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-114342493-8', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
</head>
<body>
<app-root></app-root>
</body>
</html>