-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 2.56 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
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> UX of AI </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>
<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 id = "introSection">
<h2> Let's design and build ethical AI </h2>
<h3> An AI design pattern library toolkit for designing ethical and human-centered artificial intelligence.</h3>
</div>
<div id="moduleSection">
<p id="modules">
</p>
<div class="gallery">
<figure class="pack">
<a href="give_control.html"><img src="static/1.png"
alt="Preview of the give control design principle" class="gallery-img"></a>
<figcaption><b>Giving Control</b><br><br>Provide those interacting with your system with agency by putting them in the drivers seat.</figcaption>
</figure>
<figure class = "pack">
<a href="transparency.html"><img src="static/2.png"
alt="Preview of ability to intervene ui component" class="gallery-img"></a>
<figcaption><b>Transparency</b><br><br>Provide those interacting with your system with the information necessary to build confidence.</figcaption>
</figure>
<figure class = "pack">
<a href="mailto:irawo10@gmail.com">
<img src="static/placeholder-img.png"
alt="Preview of ability to intervene ui component" class="gallery-img"></a>
<figcaption><b>Contribute to this project!</b><br><br>In order to keep this project going and growing, we need your help!</figcaption>
</figure>
</div>
</div>
</body>
</html>