-
Notifications
You must be signed in to change notification settings - Fork 0
/
russian.v1.html
43 lines (43 loc) · 1.77 KB
/
russian.v1.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
<html>
<head>
<title>HeartBank®</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="logo.png">
<link rel="stylesheet" href="russian.css" media="(min-width: 480px)">
<link rel="stylesheet" href="russian.m.css" media="(max-width: 480px)">
<script src="russian.js" defer></script>
</head>
<body>
<header>
<section>
<img src="logo.png">
<h1>HeartBank<sup>®</sup></h1>
</section>
<section>
<nav>
<a href="https://anchor.fm/heartbank">Anchor</a>
<a href="https://www.youtube.com/c/HeartBank">YouTube</a>
<a href="https://medium.com/heartbank">Medium</a>
</nav>
<select onchange="updateLanguage(event)">
<option value="russian.html">русский</option>
<option value="index.html">английский</option>
</select>
</section>
</header>
<main>
<img src="ethereum.png">
<p>Мы инвестируем в децентрализованные приложения на блокчейне Ethereum.</p>
<nav>
<a href="https://t.me/heartbank">Telegram</a>
<a href="https://discord.gg/9PbcRr9ZvB">Discord</a>
<a href="https://twitter.com/heartbank">Twitter</a>
<a href="https://www.facebook.com/heartbank">Facebook</a>
</nav>
</main>
<footer>
<a href="mailto:dapps@heartbank.com">dapps@heartbank.com</a>
<small>HeartBank © 2021</small>
</footer>
</body>
</html>