-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (43 loc) · 1.81 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
<!DOCTYPE html>
<html lang="">
<head>
<link rel="shortcut icon" href="http://rioran.ru/images/icon.png" type="image/x-icon">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solitare - The hardest IQ test ever!</title>
<style> body {padding: 0; margin: 0;} </style>
<script src="./p5.min.js"></script>
<script src="./addons/p5.dom.min.js"></script>
<script src="./addons/p5.sound.min.js"></script>
<script src="./sketch.js"></script>
<script src="./pin.js"></script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(54148852, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
});</script>
<style>
h1, p {
padding-left: 19px;
}
</style>
</head>
<body>
<h1>Solitare - The hardest IQ test ever! Probably...</h1>
<div id="game_div" style="position: relative;">
<input id="rows" max="15" min="4" type="number" style="position: absolute; left: 19px; top: 100px; width: 35px; height: 16px;"/>
</div>
<p>
Game creator: Dmitry Astretsov
<br><a href="https://vk.com/dmastr">https://vk.com/dmastr</a> // <a href="https://t.me/dmastr">Telegram: @dmastr</a> // <a href="https://www.facebook.com/dmitry.astretsov.3">facebook</a>
<br><br>Advisor & Host: Roman "Rioran" Voronov
<br><a href="http://www.vk.com/rioran">https://vk.com/rioran</a> // <a href="https://t.me/rioran">Telegram: @rioran</a> // <a href="https://www.facebook.com/roman.rioran.voronov">facebook</a>
</p>
</body>
</html>