-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
78 lines (70 loc) · 4.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Scramble - A Vue.js Game | Muthu Kumaran</title>
<meta name="description" content="Scramble - A Vue.js Game is a Word Game developed by Muthu Kumaran. Built using Vue.js and Vuex (JavaScript framework). Find all possible words from the jumbled letters. Find all words to get bonus points.">
<meta name="author" content="Muthu Kumaran">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="http://iamkumaran.github.io/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="http://iamkumaran.github.io/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="http://iamkumaran.github.io/img/favicons/favicon-16x16.png">
<link rel="manifest" href="http://iamkumaran.github.io/img/favicons/manifest.json">
<link rel="mask-icon" href="http://iamkumaran.github.io/img/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<!-- Open Graph data -->
<meta property="og:url" content="http://iamkumaran.github.io/scramble-a-vue-js-game/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Scramble - A Vue.js Game By Muthu Kumaran" />
<meta property="og:image" content="http://iamkumaran.github.io/img/portfolio/social-icons/scramble-vue-js-game.png" />
<meta property="og:description" content="Scramble - A Vue.js Game is a Word Game developed by Muthu Kumaran. Built using Vue.js and Vuex (JavaScript framework). Find all possible words from the jumbled letters. Find all words to get bonus points." />
<meta property="og:site_name" content="iamkumaran github" />
<!--<meta property="fb:admins" content="Facebook numeric ID" />-->
<!-- Twitter Card data -->
<meta name="twitter:card" content="Scramble - A Vue.js Game is a Word Game developed by Muthu Kumaran. Built using Vue.js and Vuex (JavaScript framework). Find all possible words from the jumbled letters. Find all words to get bonus points.">
<meta name="twitter:site" content="@iamkumaran">
<meta name="twitter:title" content="Scramble - A Vue.js Game By Muthu Kumaran">
<meta name="twitter:description" content="Scramble - A Vue.js Game is a Word Game developed by Muthu Kumaran. Built using Vue.js and Vuex (JavaScript framework). Find all possible words from the jumbled letters. Find all words to get bonus points.">
<meta name="twitter:creator" content="@aMuthu Kumaran">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="http://iamkumaran.github.io/img/portfolio/social-icons/scramble-vue-js-game.png">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="Scramble - A Vue.js Game By Muthu Kumaran">
<meta itemprop="description" content="Scramble - A Vue.js Game is a Word Game developed by Muthu Kumaran. Built using Vue.js and Vuex (JavaScript framework). Find all possible words from the jumbled letters. Find all words to get bonus points.">
<meta itemprop="image" content="http://iamkumaran.github.io/img/portfolio/social-icons/scramble-vue-js-game.png">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<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');
window.ga('create', 'UA-100455951-1', 'auto');
window.ga('send', 'pageview');
</script>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
(function (d, s, id) {
var js;
var fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = '//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.9';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-593e5e6045fcf52f"></script>
</body>
</html>