blob: 928169a9b14c33593b370fd45a4d7cc058767e68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<title>Pretty pictures!</title>
</head>
<body>
<center>
<h1>Look, pictures!</h1>
<img alt="serenity logo (squished)" src="file:///res/icons/serenity.png" width="40" height="40" />
<img alt="serenity logo (normal)" src="file:///res/icons/serenity.png" width="64" height="64" />
<img alt="serenity logo (stretched)" src="file:///res/icons/serenity.png" width="100" height="100" />
<img alt="serenity logo (unspecified size)" src="file:///res/icons/serenity.png" />
<h1>Look, not pictures!</h1>
<img alt="invalid path (64x64)" src="file:///res/icons/file-does-not-exist.png" width="64" height="64" />
<img alt="invalid path (100x100)" src="file:///res/icons/file-does-not-exist.png" width="100" height="100" />
<img alt="invalid path (unspecified size)" src="file:///res/icons/file-does-not-exist.png" />
<img src="file:///res/icons/file-does-not-exist.png" />
</center>
</body>
</html>
|