-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (91 loc) · 5.51 KB
/
index.html
File metadata and controls
100 lines (91 loc) · 5.51 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Primary Meta Tags -->
<title>Thisman — инструменты и игры</title>
<meta name="title" content="Thisman — инструменты и игры">
<meta name="description" content="Калькуляторы для оценки задач, музыкальный тренажёр и браузерные игры.">
<meta name="author" content="Thisman">
<meta name="robots" content="index, follow">
<meta name="language" content="Russian">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://thisman.github.io/">
<meta property="og:title" content="Thisman — инструменты и игры">
<meta property="og:description" content="Калькуляторы для оценки задач, музыкальный тренажёр и браузерные игры.">
<meta property="og:image" content="https://thisman.github.io/images/demo.png">
<meta property="og:locale" content="ru_RU">
<!-- Additional Meta Tags -->
<meta name="theme-color" content="#2196F3">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Thisman">
<!-- Canonical URL -->
<link rel="canonical" href="https://thisman.github.io/">
<!-- Styles -->
<link rel="stylesheet" href="./shared/common.css">
<link rel="stylesheet" href="./index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
<!-- 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();
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
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?id=107098559', 'ym');
ym(107098559, 'init', {ssr:true, webvisor:true, clickmap:true, ecommerce:"dataLayer", referrer: document.referrer, url: location.href, accurateTrackBounce:true, trackLinks:true});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/107098559" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body>
<div class="main-container">
<section class="group">
<h2 class="group-title">Планирование</h2>
<div class="cards">
<a href="./how-many-sp/index.html" class="card">
<span class="card-title">Сколько сториков?</span>
<span class="card-desc">Рассчитай сторипоинты по трём критериям: неопределённость, сложность и объём работы</span>
</a>
<a href="./triangular-estimation/index.html" class="card">
<span class="card-title">Оценка по трём точкам</span>
<span class="card-desc">Метод PERT: введи оптимистичную, реалистичную и пессимистичную оценки — получи итог с графиком распределения</span>
</a>
</div>
</section>
<section class="group">
<h2 class="group-title">Музыка</h2>
<div class="cards">
<a href="./gamma-trainer/index.html" class="card">
<span class="card-title">Гаммы и лады</span>
<span class="card-desc">Выбери тонику и лад — изучи ступени, трезвучия и родственные тональности</span>
</a>
</div>
</section>
<section class="group">
<h2 class="group-title">Игры</h2>
<div class="cards">
<a href="./babylon-tower/index.html" class="card">
<span class="card-title">Babylon Tower</span>
<span class="card-desc">3D-головоломка: расставь цветные фишки по граням пятиугольной призмы</span>
</a>
<a href="./tic-tac-toe/index.html" class="card">
<span class="card-title">Swap-Tac-Toe</span>
<span class="card-desc">Крестики-нолики с механикой swap: ставь метки или меняй соседние фишки местами</span>
</a>
<a href="./the-maze/index.html" class="card">
<span class="card-title">The Maze</span>
<span class="card-desc">Управляй двумя объектами одновременно — приведи их к цели за нужное число шагов</span>
</a>
</div>
</section>
</div>
<footer class="footer">
<a href="https://github.com/Thisman/thisman.github.io" target="_blank">GitHub</a>
</footer>
</body>
</html>