-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.html
70 lines (68 loc) · 1.58 KB
/
test.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
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<style type="text/css">
body{
background-color: #000;
}
img,svg{
background-color: red;
}
</style>
</head>
<body>
<img src="img/unlicense.svg" />
<br>
<img src="img/no-license.svg" />
<br>
<img src="img/mpl-2.0.svg" />
<br>
<img src="img/mit.svg" />
<br>
<img src="img/lgpl-3.0.svg" />
<br>
<img src="img/lgpl-2.1.svg" />
<br>
<img src="img/isc.svg" />
<br>
<img src="img/gpl-3.0.svg" />
<br>
<img src="img/gpl-2.0.svg" />
<br>
<img src="img/epl-1.0.svg" />
<br>
<img src="img/cc0-1.0.svg" />
<br>
<img src="img/bsd-3-clause.svg" />
<br>
<img src="img/bsd-2-clause.svg" />
<br>
<img src="img/artistic-2.0.svg" />
<br>
<img src="img/apache-2.0.svg" />
<br>
<img src="img/agpl-3.0.svg" />
<br>
<hr>
<!--
<svg xmlns="http://www.w3.org/2000/svg" width="106" height="20">
<linearGradient id="a" x2="0" y2="100%">
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
<stop offset="1" stop-opacity=".1"/>
</linearGradient>
<rect rx="3" width="106" height="20" fill="#555"/>
<rect rx="3" x="63" width="43" height="20" fill="#4c1"/>
<path fill="#4c1" d="M63 0h4v20h-4z"/>
<rect rx="3" width="106" height="20" fill="url(#a)"/>
<g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11">
<text x="32.5" y="15" fill="#010101" fill-opacity=".3">coverage</text>
<text x="32.5" y="14">coverage</text>
<text x="83.5" y="15" fill="#010101" fill-opacity=".3">100%</text>
<text x="83.5" y="14">100%</text>
</g>
</svg>
-->
</body>
</html>