-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
136 lines (126 loc) · 6.78 KB
/
team.html
File metadata and controls
136 lines (126 loc) · 6.78 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/animations.css">
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/icons.css">
<link rel="icon" href="favicon.ico">
<meta name="author" content="AntHill">
<meta name="description" content="The best community in the world!">
<title>Our Team ::: Anthill</title>
</head>
<body>
<header class="fly_down" style="--animDuration: 0.5s; --animDelay: 2.5s;">
<a href="index.html" class="title small_title website_title noselect">Anthill</a>
<div class="menupanel round">
<a href="about.html" class="menubutton roundleft">
<span class="material-symbols-outlined">info</span>
About
</a><a href="blog/index.html" class="menubutton">
<span class="material-symbols-outlined">feed</span>
Blog
</a><a href="works.html" class="menubutton">
<span class="material-symbols-outlined">work</span>
Works
</a><a href="team.html" class="menubutton roundright">
<span class="material-symbols-outlined">engineering</span>
Team
</a>
</div>
<div class="flex">
<div class="button round" onclick="show_sign_form()">
<span class="material-symbols-outlined">manage_accounts</span>
</div>
<div class="button round">
<span class="material-symbols-outlined">language</span>
</div>
<div class="button round" onclick="toggle_dark_mode()">
<span class="material-symbols-outlined">brightness_6</span>
</div>
</div>
<div class="sign_form" id="my_sign_form">
<center>
<div>
<br><br><br><br>
<h1>Sign in/up</h1>
<br><br>
<input type="text" class="textbox roundleft" id="userbox" placeholder="Username"><input type="password" class="textbox roundright" id="pwdbox" placeholder="Password">
<br><br>
<input type="button" class="button round" id="signinbutton" value="Sign in">
<input type="button" class="grbutton round" id="signupbutton" value="Sign up">
<br><br><br><br>
<span class="material-symbols-outlined">warning</span>
Account system is currently not working (because it does not exist). This form is just placeholder.<br>
Stay tuned!
<br><br>
</div>
</center>
</div>
</header>
<main id="main_container" class="fullheight" onclick="hide_sign_form()">
<center>
<h1 class="big_title fade_in" style="--animDuration: 2s; --animDelay: 0s;">Anthill Development Team</h1>
<p class="fade_in" style="--animDuration: 1s; --animDelay: 2s;">
Discover who are we and what we are doing :)
</p>
<br><br>
</center>
<center id="team_display" class="unblur" style="--animDuration: 2s; --animDelay: 2s;">
<!-- Team members will appear here! (see team.js for further details) -->
<div class="teammate title">
<img class="teammate_avatar" src="assets/img/mikhail_beskin.jpg">
<h1>Mikhail Beskin</h1>
<p>Misha is a dude from Belarus. He's been doing programming and everything related to it for several years now. He wants to create the best organization in the world!</p>
<p>[no links provided]</p>
</div>
<br>
<div class="teammate title">
<img class="teammate_avatar" src="assets/img/ivan_covach.jpg">
<h1>Ivan Covach</h1>
<p>I confuse left and right, punk, like math (definitely punk), bad at Russian writing, love rice👍.I'm on Arch - why? Because. I was born with a soldering iron in my hands. I've flown around the nearest star 17 times. I've seen a baby pigeon, I have personalized chopsticks, and I think I can program something.</p>
<p>[no links provided]</p>
</div>
<br>
<div class="teammate title">
<img class="teammate_avatar" src="assets/img/nikolai_denisov.jpg">
<h1>Nikolai Denisov</h1>
<p>[no description provided]</p>
<p>[no links provided]</p>
</div>
<br>
<div class="teammate title">
<img class="teammate_avatar" src="assets/img/ivan_movchan.jpg">
<h1>Ivan Movchan</h1>
<p>Programmer and Open Source enthusiast, trying myself in web design and electronic music, cats lover 🐱💻
<p><a href="https://nobootrecord.github.io">https://nobootrecord.github.io</a></p>
</div>
<br>
<div class="teammate title">
<img class="teammate_avatar" src="assets/img/artem_kuznetsov.jpg">
<h1>Artem Kuznetsov</h1>
<p>[no description provided]</p>
<p>[no links provided]</p>
</div>
<br>
</center>
</main>
<footer>
<div>
Copyright © the best community in the world, 2023</a>
</div>
<div>
<a href="https://github.com/AntHill-dev"><img class="social" src="assets/img/github.png" alt="GitHub" title="GitHub"></a>
<a href="https://discord.com"><img class="social" src="assets/img/discord.png" alt="Discord" title="Discord"></a>
<a href="https://t.me/ANTHlll"><img class="social" src="assets/img/telegram.png" alt="Telegram" title="Telegram"></a>
</div>
</footer>
<script src="scripts/main.js" lang="JavaScript"></script>
<script src="scripts/animations.js" lang="JavaScript"></script>
<!--
TEMPORARELY DISABLED
<script src="scripts/team.js" lang="JavaScript"></script>
-->
</body>
</html>