Skip to content

Commit

Permalink
Merge pull request #38 from edumudu/feature/#37
Browse files Browse the repository at this point in the history
#37 add meta tags and google analytics tag
  • Loading branch information
edumudu authored Sep 25, 2020
2 parents 3d16fc5 + 217ca2f commit fd5e2f0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-179015580-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-179015580-1');
</script>

<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animal memory game</title>
<meta name="author" content="Eduardo Wesley" />
<meta name="keywords" content="animal game, game, cute, cute game, multiplayer game, memory game" />
<meta name="description" content="Animal memory game made with javascript, webpack and sass." />
<meta name="robots" content="index">
<meta name="google-site-verification" content="SJLBKwzjDEPRa6CRL1QdNY_TSAPipCapquuV9BJpBLg" />

<meta property="og:type" content="game" />
<meta property="og:title" content="Animal memory game" />
<meta property="og:description" content="A online multiplayer memory game with cute animals :)" />
<meta property="og:site_name" content="Animal memory game" />
<meta property="og:url" content="https://edumudu.github.io/memory-game">

<meta name="twitter:title" content="Animal memory game">
<meta name="twitter:description" content="A online multiplayer memory game with cute animals :)">
<meta name="twitter:image" content="https://imgur.com/OgO7mac">
<meta name="twitter:site" content="@mudu00">
<meta name="twitter:creator" content="@mudu00">

<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
Expand Down

0 comments on commit fd5e2f0

Please sign in to comment.