-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
65 lines (58 loc) · 3.09 KB
/
about.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
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Giving Control</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<style>
a {
color: rgb(164, 147, 128);
}
</style>
<div class="header">
<div class="logo">
<img src="boxx.svg" width="100" height="50" alt="Company Logo">
</div>
<div class="menu">
<a href="index.html" class="link">
<div class="title">Home</div>
<div class="bar"></div>
</a>
<a href="about.html" class="link">
<div class="title">About</div>
<div class="bar"></div>
</a>
<a href="mailto:irawo10@gmail.com" class="link">
<div class="title">Contact</div>
<div class="bar"></div>
</a>
</div>
</div>
<body>
<div class="information">
<h2>About this resource</h2>
<h3>Our goal is to provide a tool for designers to prioritize ethical design considerations in creating the AI
tools that will define our world.</h3>
<p>This site was built by three designers and developers interested in the primary question of <b>how can we create more ethical AI systems?</b> Most of the time when the creation of new AI tools is discussed, the potential implications of how it might impact society at a higher level is not as emphasized or investigated. This user experience and design ethics research takes a lot of time and energy. Time and energy that many AI startups and smaller teams might not have access to. For those teams, we wanted to provide a centralized library of design considerations that can help guide ethical AI design implementations. We hope that this tool can be helpful for you whether you are a solo designer, a creative technologist, or a larger team interested in ethical design. Below you can find some additional reading materials on the UX design of AI tools:</p>
<br>
<a href="https://issues.org/human-centered-ai/">Human-Centered AI by Ben Shneiderman</a>
<br>
<a href="https://www.instagram.com/accessible_ai/?hl=en">Accssible AI Instagram Account</a>
<br>
<a href="https://aixdesign.co/">AI X Design Research Lab</a>
<br>
<a href="https://lab.cccb.org/en/rethinking-artificial-intelligence-through-feminism/">Rethinking Artificial Intelligence through Feminism by Caroline Sinders</a>
<br>
<a href="https://criticalai.art/index.html">Critical AI Art Archive by Katrina Sluis and Erica Molesworth</a>
<br>
<a href="https://anatomyof.ai/">Anatomy of an AI System by Kate Crawford and Vladan Joler</a>
</div>
</body>
</html>