-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 1.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Avatars</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Generate inclusive Avatars for users" />
<style>
* {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
</style>
</head>
<body>
<img
width="100"
src="/*"
alt="light skin man with red shirt and beard"
/>
<img
width="130"
src="/4"
alt="dark skin woman with yellow shirt and ponytail"
/>
<img
width="160"
src="/girlme"
alt="tanned woman with grey shirt and long hair"
/>
<img
width="130"
src="/9"
alt="dark tanned man with red shirt and hair spray"
/>
<img
width="100"
src="/10"
alt="light skin man with pink shirt and sunglasses"
/>
<h2>avatar.windsor.io/*</h2>
<h3>The Inclusive Avatar Generator</h3>
<p>
Generate unique avatars. You can use any valid URL like
<a href="avatar.windsor.io/abcd">avatar.windsor.io/abcd</a> or
<a href="avatar.windsor.io/[email protected]"
>avatar.windsor.io/[email protected]</a
>
and this app will spit out a .png image you can use as as a placeholder
avatar. The same URL will always give you the same image, so this works
really well as default profile pictures when you only have a user's ID or
email.
</p>
<p>We use this throughout <a href="https://windsor.io">windsor.io</a></p>
<h3>Construction</h3>
<p>Avatars are constructed using these parts</p>
<img
width="600"
src="https://cdn.windsor.io/avatar/space.png"
alt="a figure with all the various parts which are used to generate the avatars"
/>
</body>
</html>