-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
59 lines (52 loc) · 1.75 KB
/
resources.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
<!DOCTYPE html>
<html>
<head>
<title>
tools and resources
</title>
<style>
body{
background-color: rgb(12, 12, 12);
color: lightgray;
}
#main{
left: 50px;
top: 50px;
padding: 10px;
position: absolute;
border: 1px solid rgba(165, 165, 165, 0.486);
background-color: rgb(24, 24, 24);
width: 800px;
}
a{
color: rgb(111, 199, 133);
}
</style>
</head>
<body>
<div id="main">
<a style="font-size: small" href="/">[return]</a><br><br>
This is a quick list of cool resources I've gathered around the web.<br>
<br>
<div>
<b>Tools / Generators:</b> <br>
<a href="https://www.base64encoder.io/image-to-base64-converter/">Image to base64</a><br>
<a href="https://barcode-maker.com/en/Code128">Barcode generator</a><br>
<br>
</div>
<div>
<b>Search:</b><br>
<a href="https://www.aha-music.com/identify-songs-music-recognition-online">Reverse music search</a>
</div><br>
<div>
<b>CSS stuff:<br></b>
<a href="https://codepen.io/sosuke/pen/Pjoqqp">CSS filter generator to convert to target hex color</a><br>
<br>
<b>CSS Examples:</b><br>
<a href="https://codepen.io/adamruf/pen/GZwdrY">Blurred, Invisible Ink, and Redacted text (CSS only)</a><br>
<a href="https://codepen.io/thomasbormans/pen/EjMBqO">CSS only marquee</a><br>
<br>
</div>
</div>
</body>
</html>