Base: Add some title attributes to the small HTML test file :^)

This commit is contained in:
Andreas Kling 2019-09-29 12:25:30 +02:00
parent 5b942b519c
commit b5c587a106
Notes: sideshowbarker 2024-07-19 11:53:41 +09:00

View file

@ -1,8 +1,8 @@
<html>
<head><title>Small test page</title></head>
<body bgcolor="#408080" text="#ffffff">
<h1>Hello friends!</h1>
<h1 title="This is a heading" >Hello friends!</h1>
<p>This is a <b>very small</b> test page :^)</p>
<p>Visit the <a href="http://www.serenityos.org/">SerenityOS home page</a> today!</p>
<p>Visit the <a title="This is a link" href="http://www.serenityos.org/">SerenityOS home page</a> today!</p>
</body>
</html>