add google analytics and modified css typo
This commit is contained in:
parent
2d8e5c904f
commit
74d27e0e29
@ -2,7 +2,7 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: #D1D1BC;
|
background-color: #D1D1BC;
|
||||||
font: helvetica, arial, freesans, clean, sans-serif;
|
font-family: helvetica, arial, freesans, clean, sans-serif;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 2em;
|
line-height: 2em;
|
||||||
}
|
}
|
||||||
|
16
index.html
16
index.html
@ -1,8 +1,8 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ja">
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
<meta http-equiv="content-language" content="ja">
|
<meta http-equiv="content-language" content="en">
|
||||||
<title>Markdown Live Previewer</title>
|
<title>Markdown Live Previewer</title>
|
||||||
<meta http-equiv="content-script-type" content="text/javascript">
|
<meta http-equiv="content-script-type" content="text/javascript">
|
||||||
<meta http-equiv="content-style-type" content="text/css">
|
<meta http-equiv="content-style-type" content="text/css">
|
||||||
@ -10,6 +10,18 @@
|
|||||||
<script type="text/javascript" src="js/jquery-1.6.1.min.js"></script>
|
<script type="text/javascript" src="js/jquery-1.6.1.min.js"></script>
|
||||||
<script type="text/javascript" src="js/markdown.js"></script>
|
<script type="text/javascript" src="js/markdown.js"></script>
|
||||||
<script type="text/javascript" src="js/main.js"></script>
|
<script type="text/javascript" src="js/main.js"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-73660-11']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1 id="header">Markdown Live Previewer</h1>
|
<h1 id="header">Markdown Live Previewer</h1>
|
||||||
|
Loading…
Reference in New Issue
Block a user