Base: Add a page for image features to the www directory

This commit is contained in:
Conrad Pankoff 2019-10-06 23:16:14 +11:00 committed by Andreas Kling
parent b240500107
commit 6eef6f4f1d
Notes: sideshowbarker 2024-07-19 11:47:05 +09:00
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<html>
<head>
<title>Pretty pictures!</title>
</head>
<body>
<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" />
</body>
</html>

View file

@ -20,6 +20,7 @@ h1 {
<li><a href="css.html">css</a></li>
<li><a href="lorem.html">lorem ipsum</a></li>
<li><a href="phint.html">presentational hints</a></li>
<li><a href="images.html">images</a></li>
</ul>
</body>
</html>