forked from webmachinelearning/webmachinelearning.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebml-webnn-logos.html
More file actions
42 lines (38 loc) · 912 Bytes
/
webml-webnn-logos.html
File metadata and controls
42 lines (38 loc) · 912 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>SVG Logos</title>
<style>
body {
margin: 0px;
}
object {
width: 100%;
margin: 0;
padding: 0;
}
.webml {
height: 132px;
padding: 10px;
display: block;
}
.webnn {
height: 122px;
padding: 10px;
display: block;
}
.white {
background-color: #fff;
}
.dark {
background-color: #3f69b8;
}
</style>
</head>
<body>
<object class="webml white" data="./webml/logo-webml-white.svg" type="image/svg+xml"></object>
<object class="webml dark" data="./webml/logo-webml-dark.svg" type="image/svg+xml"></object>
<object class="webnn white" data="./webnn/logo-webnn-white.svg" type="image/svg+xml"></object>
<object class="webnn dark" data="./webnn/logo-webnn-dark.svg" type="image/svg+xml"></object>
</body>
</html>