-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout_us.html
65 lines (58 loc) · 2.61 KB
/
about_us.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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<!-- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> -->
<!-- Import materialize.css -->
<!-- <link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" /> -->
<!-- <link rel="stylesheet" href="css/style.css"> -->
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header>
<nav class="main-navigation">
<a class="main-header-logo" href="index.html">
<img src="img/optimus.jpeg" width="100" height="100" alt="Логотип 'prime heisen'">
</a>
<ul class="site-navigation">
<li><a href="index.html">N decomposer</a></li>
<li><a class="site-navigation-current" href="#">About Us</a></li>
</ul>
</nav>
</header>
<main class="container">
<h1>Что делает наш сервис</h1>
<p> Данный веб-сервис принимает на вход число N, разлагает его на два простых множителя p и q <br> и возвращает результат за время не большее, чем 2*pi*Rз/c + f(N), <br> где Rз - радиус земли, с - скорость света, а f - некоторая линейная функция от N.</p>
</main>
<footer>
<p>
Maxim Kupriyanchuk <br>
[email protected] <br>
<a class="avatar" href="#">
<img src="img/TylerMask.png" width="90" height="90" alt="Максим Куприянчук">
</a>
</p>
<p>
Supported by <b>Heisen</b>
<a href="https://www.patreon.com/bePatron?c=1443438">
<span>Help the project - become a patron</span>
</a>
</p>
<div>
<ul style="background-color: palevioletred">
<li>
<a href="https://github.com/melivaro"><img src="img/github.png" alt="github"></a>
</li>
<li>
<a href="https://heisen.me/"><img src="img/heisen_logo_white.png" alt="heisen website"></a>
</li>
<li>
<a href="https://www.patreon.com/heisen"><img src="img/patreon.png" alt="patreon"></a>
</li>
</ul>
<a href="https://github.com/melivaro">Developed by Maxim Kupriyanchuk</a>
</div>
</footer>
</body>
</html>