-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplainhtml_with_analytics.html
28 lines (25 loc) · 1.42 KB
/
plainhtml_with_analytics.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
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with Google analytics script
</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3084173-5']);
_gaq.push(['_setDomainName', 'mobiforge.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<h1>Plain HTML page with Google analytics script</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
</body>
</html>