-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
121 lines (111 loc) · 5.26 KB
/
contacts.html
File metadata and controls
121 lines (111 loc) · 5.26 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YCN3VFR4X8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YCN3VFR4X8');
</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();
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=107269142', 'ym');
ym(107269142, '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/107269142" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
<html lang="ru">
<head>
<meta name="description" content="libmorph — высокопроизводительная библиотека морфологического анализа.
libmorphrus, libmorpheng, libmorphukr - поддержка русского, английского и украинского языков. C++, Open Source, MIT License.">
<meta name="keywords" content="морфология, русский язык, C++, SDK, лемматизация, NLP, анализ текста, libmorphrus">
<meta property="og:title" content="libmorph — морфологический анализатор на C++">
<meta property="og:image" content="https://libmorph.ru">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>libmorph :: Контакты</title>
<link rel="stylesheet" href="css/style.css">
<style>
/* Дополнительный стиль для компактности */
.contact-compact {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.contact-item {
background: var(--bg-light);
padding: 1rem;
border-radius: 8px;
border: 1px solid var(--border-color);
}
.contact-item h3 {
margin-top: 0;
color: var(--primary);
font-size: 1.1rem;
border-bottom: 1px solid var(--border-color);
padding-bottom: 0.3rem;
}
</style>
</head>
<body>
<div class="page-wrapper">
<header class="site-header">
<div class="header-container">
<div class="logo">
<a href="index.html">LIB<span>MORPH</span>.RU</a>
</div>
<nav class="main-nav">
<ul>
<li><a href="index.html">Главная</a></li>
<li><a href="about.html">О проекте</a></li>
<li><a href="help.html">Документация</a></li>
<li><a href="modules.html">Модули</a></li>
<li><a href="download.html">Скачать</a></li>
<li><span class="current">Контакты</span></li>
</ul>
</nav>
</div>
</header>
<main class="content-wrapper">
<h1>Контакты</h1>
<div style="text-align: center; margin-bottom: 2rem;">
<p style="font-size: 1.5rem; font-weight: 600; color: var(--primary);">
Андрей Коваленко (Keva)
</p>
<p style="font-size: 1.1rem; color: var(--text-dark);">
Автор и бессменный разработчик LIBMORPH
</p>
</div>
<div class="contact-compact">
<div class="contact-item">
<h3>Email</h3>
<a href="mailto:keva@rambler.ru">keva@rambler.ru</a><br>
<a href="mailto:huge-keva@gmail.com">huge-keva@gmail.com</a>
</div>
<div class="contact-item">
<h3>GitHub</h3>
<p><a href="https://github.com/big-keva">github.com/big-keva</a></p>
</div>
<div class="contact-item">
<h3>Мобила</h3>
<p><a href="tel:+79265132991">+7 (926) 513-2991</a></p>
</div>
<div class="contact-item">
<h3>Telegram</h3>
<p><a href="https://t.me/Big_keva" style="color: #0284c7; font-weight: 600; text-decoration: none;">@Big_keva</a></p>
</div>
</div>
</main>
<footer class="site-footer">
<div class="footer-copyright">
© 1996-2026 Keva. Разработка высокопроизводительных NLP решений.
</div>
</footer>
</div>
</body>
</html>