-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>crack-a-bottle</title>
<style>
body {
width: 100%;
overflow: hidden;
}
#content > * {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<div id="content">
<h1>crack-a-bottle</h1>
<p>crack-a-bottle is a (currently solo) project that aims to create utility tools and processing libraries for JavaScript and TypeScript.</p>
<p>Packages</p>
<p><a href="./crack-a-bottle">crack-a-bottle</a> - High-quality image cracking/parsing tools.</p>
<p><a href="./crypchar">crypchar</a> - Encryption and decryption of characters using arithmetic and bitwise operations.</p>
<p><a href="./dencodeme">dencodeme</a> - Encode/Decode data using various encoding schemes.</p>
</div>
<div id="footer">
<p>crack-a-bottle is licensed under the <a href="https://opensource.org/license/mit/">MIT License</a>.</p>
</div>
</body>
</html>