-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 1.95 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 1.95 KB
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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122609287-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-122609287-2');
</script>
<meta charset="utf-8">
<title>Open Ethics Label</title>
<link rel="icon" href="/src/favicon/cropped-favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="/src/favicon/cropped-favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="/src/favicon/cropped-favicon-180x180.png" />
<meta name="msapplication-TileImage" content="/src/favicon/cropped-favicon-270x270.png" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script src="/src/js/functions.js">
</script>
<style>
body {
background-color: transparent;
padding: 0;
margin: 0;
}
#label {
border: 3.5px solid #333333FF;
border-radius: 20px;
display: inline-block;
height: 30px;
padding: 3px;
width: auto;
}
svg.feature {
margin-left:3px;
}
svg.partner {
margin-left:3px;
}
svg.divider {
margin-left:7px;
}
svg.replaced-svg {
width: 30px;
height: 30px;
}
</style>
</head>
<body>
<!-- Open Ethics Label snippet: visible content -->
<a href="https://openethics.ai/label" target="_blank">
<div id="label" aria-label="Open Ethics Label">
<img src="/src/images/Open Ethics logo.svg" class="oesign svg" height="30" alt="Open Ethics Logo" role="img" aria-hidden="true">
<!-- Dynamic Content of the Open Ethics Label goes here -->
</div>
</a>
</body>
</html>