-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (100 loc) · 5.73 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<title>Albus Merula | A grotesque tale within walls</title>
<meta charset="UTF-8">
<meta name="description" content="Official website of the point-and-click graphic adventure game Albus Merula">
<meta name="keywords" content="game, videogame, nun, nuns, convent, spain, point-and-click, graphic adventure, indie, kickstarter, steam">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name=”robots” content="index, follow">
<link rel="icon" href="images/mirlo.png" type="image/png" sizes="16x16">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Quintessential&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="scripts/parallax.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112182550-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-112182550-2');
</script>
</head>
<body>
<div id="container">
<div id="scene">
<div class="layer background" data-depth="0.50"><img src="images/Background.png" width="60%"></div>
<div class="layer halo" data-depth="0.20"><img src="images/HaloT.png" width="80%"></div>
<div class="layer ines" data-depth="0.10"><img src="images/Ines.png" width="70%"></div>
<div class="layer logo" data-depth="0.0"><img src="images/Logo2.png" width="65%"></div>
<!--content-->
<div class="layer pitch" data-depth="0">
<div class="columns">
<div class="column-right text">
<p>
<b class="red">Albus Merula</b> is a classic point-and-click graphic adventure, set in an ancient Spanish convent in the 17th century, in
which you play the role of <b class="red">Ines Blanco</b>, a newly arrived novice who will
have to investigate the sudden suicide of her best friend.
</p>
</div>
<div class="column-left">
<div class="kickstarter">
<b class="red">Soon on</b>
<img src="images/kickstarter.png" width="350">
</div>
<!-- Begin Mailchimp Signup Form -->
<div id="mc_embed_signup" class="newsletter">
<b class="red">Subscribe to the newsletter</b>
<form
action="https://albusmerula.us17.list-manage.com/subscribe/post?u=957a2acc1d848fb58f8f2229d&id=4b85105cd5"
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form"
class="validate" target="_blank" novalidate id="newsletter-form">
<div id="mc_embed_signup_scroll">
<div class="mc-field-group">
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
<input type="submit" value="Subscribe" name="subscribe"
id="mc-embedded-subscribe" class="button">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input type="text" name="b_957a2acc1d848fb58f8f2229d_4b85105cd5" tabindex="-1"
value="">
</div>
</div>
</form>
</div>
<!--End mc_embed_signup-->
</div>
</div>
<div class="columns">
<div class="column-right twitter">
<a href="http://twitter.com/albusmerula"><img src="images/twitter.png"></a>
</div>
<div class="column-left">
<a href="#"><img src="images/steam.png"></a>
</div>
</div>
<div class="copyright">
<p><b>Created by Alvaro Luque © 2020</b></p>
<p>Albus Merula and Albus Merula: Preluto © Haunted Knights</p>
<p>All rights reserved | Albus Merula, the game, the franchise and its derivatives, is licensed by and belongs to Haunted Knights</p>
<p>Developed by Haunted Knights | Haunted Knights is a registered trademark of Haunted Knights</p>
</div>
</div>
</div>
<script>
var scene = document.getElementById('scene');
var parallax = new Parallax(scene, {
pointerEvents: true,
});
var formInput = document.getElementById("newsletter-input");
formInput.onfocus = function () {
this.setAttribute("value", "");
}
</script>
</body>
</html>