Spaces:
Running
Running
Commit
•
c81a8aa
1
Parent(s):
47614fa
Update index.html
Browse files- index.html +32 -19
index.html
CHANGED
@@ -1,19 +1,32 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Unconscious Bias Training</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
line-height: 1.6;
|
11 |
+
margin: 20px;
|
12 |
+
background-color: #f9f9f9;
|
13 |
+
color: #333;
|
14 |
+
}
|
15 |
+
h1 {
|
16 |
+
color: #2c3e50;
|
17 |
+
}
|
18 |
+
.container {
|
19 |
+
text-align: center;
|
20 |
+
}
|
21 |
+
iframe {
|
22 |
+
border: 1px solid #ddd;
|
23 |
+
}
|
24 |
+
</style>
|
25 |
+
</head>
|
26 |
+
<body>
|
27 |
+
<div class="container">
|
28 |
+
<h1>Unconscious Bias Training</h1>
|
29 |
+
<iframe src="https://huggingface.co/spaces/EmilyWitko/Unconscious_Bias/raw/main/Training%20%232_%20Unconscious%20Bias.pdf" width="1000" height="800"></iframe>
|
30 |
+
</div>
|
31 |
+
</body>
|
32 |
+
</html>
|