forked from jackpot51/systemicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (79 loc) · 1.68 KB
/
index.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
71
72
73
74
75
76
77
78
79
80
81
82
83
<html>
<head>
<title>Rust System Icons</title>
<meta charset="utf-8" />
<style>
body {
background-color: gray;
}
.ico {
width: 64px;
height: 64px;
}
.ico--md {
width: 32px;
height: 32px;
}
.icon--sm {
width: 16px;
height: 16px;
}
</style>
</head>
<body>
<h1>Rust System Icons</h1>
<p>This is a sample page for displaying in <em>Rust System Icons</em></p>
<p>
Explorer.exe
<img class="ico" src="geticon?path=c:\\windows\\explorer.exe&size=64" />
</p>
<p>
hh.exe
<img class="ico" src="geticon?path=c:\\windows\\hh.exe&size=64" />
</p>
<p>
nofilefound.exe
<img class="ico" src="geticon?path=c:\\windows\\nofilefound.exe&size=64" />
</p>
<p>
PDF
<img class="ico" src="geticon?path=.pdf&size=64" />
</p>
<p>
PDF
<img class="icon--sm" src="geticon?path=.pdf&size=16" />
</p>
<p>
Empty
<img class="icon--sm" src="geticon?path=&size=16" />
</p>
<p>
Activity Monitor.app
<img
class="ico"
src="geticon?path=/System/Applications/Utilities/Activity Monitor.app&size=64"
/>
</p>
<p>
Finder.app
<img
class="ico"
src="geticon?path=/System/Library/CoreServices/Finder.app&size=64"
/>
</p>
<p>
Notes.app
<img
class="ico--md"
src="geticon?path=/System/Applications/Notes.app&size=32"
/>
</p>
<p>
Messages.app
<img
class="ico--sm"
src="geticon?path=/System/Applications/Messages.app&size=16"
/>
</p>
</body>
</html>