diff options
author | Conrad Pankoff <deoxxa@fknsrs.biz> | 2019-10-06 23:16:14 +1100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-06 14:33:00 +0200 |
commit | 6eef6f4f1d6086c52c80d9bf99c2d3f67019280b (patch) | |
tree | 9fc6d78cdafa939c823e33ef3f1382fe159275cf /Base/home | |
parent | b240500107ce6bdaf3c92ea3b5cfc39907ed8bd8 (diff) | |
download | serenity-6eef6f4f1d6086c52c80d9bf99c2d3f67019280b.zip |
Base: Add a page for image features to the www directory
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/www/images.html | 18 | ||||
-rw-r--r-- | Base/home/anon/www/welcome.html | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/Base/home/anon/www/images.html b/Base/home/anon/www/images.html new file mode 100644 index 0000000000..a22986397c --- /dev/null +++ b/Base/home/anon/www/images.html @@ -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> diff --git a/Base/home/anon/www/welcome.html b/Base/home/anon/www/welcome.html index 57380202b6..39932c9a10 100644 --- a/Base/home/anon/www/welcome.html +++ b/Base/home/anon/www/welcome.html @@ -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> |