Base: Add a page for image features to the www directory
This commit is contained in:
parent
b240500107
commit
6eef6f4f1d
Notes:
sideshowbarker
2024-07-19 11:47:05 +09:00
Author: https://github.com/deoxxa Commit: https://github.com/SerenityOS/serenity/commit/6eef6f4f1d6 Pull-request: https://github.com/SerenityOS/serenity/pull/634
2 changed files with 19 additions and 0 deletions
18
Base/home/anon/www/images.html
Normal file
18
Base/home/anon/www/images.html
Normal 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>
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue