-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (74 loc) · 3.64 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
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Ducklings (오덕) mobile game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="http://ducklingsgame.com/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/stylesheets/stylesheet.css" media="screen">
<meta property="og:title" content="Ducklings (오덕) mobile game"/>
<meta property="og:type" content="game"/>
<meta property="og:image" content="http://ducklingsgame.com/img/fb_img.png"/>
<meta property="og:description" content="An endless jumping arcade mobile game"/>
<meta property="og:url" content="http://ducklingsgame.com/" />
<meta name="description" content="Ducklings is a fun, endless jumping arcade mobile game.">
<meta name="keywords" content="OhDuck, Oh Duck, 오덕, 오! 덕!, 오-덕, 오덕이, 오!덕!, Ducklings">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Ducklings</h1>
<div class="download_btns">
<a id="app_store_main" class="download_btn download_btn_apple" href="https://itunes.apple.com/us/app/ducklings/id993586600?mt=8" target="_blank">Download on the Apple App Store</a>
<a id="google_play_main" class="download_btn download_btn_google" href="https://play.google.com/store/apps/details?id=com.hello.ducklings" target="_blank">Download on the Google Play Store</a>
</div>
</section>
<section class="main-content">
<br>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/gkQs7uWFUlQ?rel=0" frameborder="0" width="560" height="315"></iframe>
</div>
<p class="follow-section">
Follow on <a target="_blank" href="https://twitter.com/ducklingsgame">Twitter</a>, <a target="_blank" href="https://www.facebook.com/ducklingsgame">Facebook</a> or <a target="_blank" href="https://instagram.com/ducklingsgame">Instagram</a> !
</p>
<p>
<img src="../img/3_s.png" alt="ducklings screenshot" class="press-screenshot">
<img src="../img/5_s.png" alt="ducklings screenshot" class="press-screenshot">
<img src="../img/1_s.png" alt="ducklings screenshot" class="press-screenshot">
<img src="../img/4_s.png" alt="ducklings screenshot" class="press-screenshot">
<img src="../img/2_s.png" alt="ducklings screenshot" class="press-screenshot">
</p>
</section>
<footer class="main-content">
<div class="menu">
<a href="/" class="btn">Home</a>
<a href="/press" class="btn">Presskit</a>
<a href="/imprint" class="btn">Imprint</a>
<a href="/privacy" class="btn">Privacy Policy</a>
</div>
<div class="small-text">
Made by Snake Oil Studios © 2015
</div>
</footer>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48881427-5', 'auto');
ga('send', 'pageview');
document.getElementById("app_store_main").onclick = function() {
ga('send', 'pageview', "/apple");
}
document.getElementById("google_play_main").onclick = function() {
ga('send', 'pageview', "/google_play");
}
var userLang = navigator.language || navigator.userLanguage;
if(userLang === "ko") {
var header = document.getElementsByClassName("project-name");
if(header.length) {
header[0].innerHTML = "Oh! Duck!";
}
}
</script>
</body>
</html>