-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
113 lines (113 loc) · 5.92 KB
/
about.html
File metadata and controls
113 lines (113 loc) · 5.92 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
<!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 Developers Team">
<meta name="description" content="The best community in the world!">
<title>About us ::: 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>
<center class="fullheight fade_in" style="--animDuration: 2s; --animDelay: 0s;">
<div class="cube_cont"><div class="cube">
<div class="cube_side cube_front">
<div class="fcenter small_title">Anthill Developers Team</div>
</div>
<div class="cube_side cube_back">
<div class="fcenter small_title">Anthill Developers Team</div>
</div>
<div class="cube_side cube_left">
<div class="fcenter small_title">Anthill Developers Team</div>
</div>
<div class="cube_side cube_right">
<div class="fcenter small_title">Anthill Developers Team</div>
</div>
<div class="cube_side cube_top">
<div class="fcenter small_title">Anthill Developers Team</div>
</div>
<div class="cube_side cube_bottom">
<div class="fcenter small_title">Anthill Developers Team</div>
</div>
</div></div>
</center>
<center>
<div class="fade_in" style="--animDuration: 1s; --animDelay: 3s; text-align: left;"
AntHiLL is a tiny community of developers. We develop nice and interesting stuff like web design, desktop applications and much other.<br>
AntHiLL was established in May 2023 - and in August 2023 we have launched our website.<br>
<br>
In our community you can share your experience, knowledges and interesting ideas. If you have interesting ideas, please get in touch with us!
</div>
<br><br><br><br>
<div class="window fade_in" style="--animDuration: 1s; --animDelay: 4s;">
<div class="window_titlebar title">ahcontact</div>
<div class="window_client">
<h1>ianthill at gmail dot com</h1>
</div>
</div>
</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>
</body>
</html>