EmilyWitko HF staff commited on
Commit
c81a8aa
1 Parent(s): 47614fa

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +32 -19
index.html CHANGED
@@ -1,19 +1,32 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>