diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-29 12:25:30 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-29 12:26:15 +0200 |
commit | b5c587a106a9dbbc7b3b7c61720ff3f134b3c833 (patch) | |
tree | 25e8246256522d1f433ab3579c4e2486b1cbbcdd | |
parent | 5b942b519c2fbbab10d61af7f09e5449019cce89 (diff) | |
download | serenity-b5c587a106a9dbbc7b3b7c61720ff3f134b3c833.zip |
Base: Add some title attributes to the small HTML test file :^)
-rw-r--r-- | Base/home/anon/small.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Base/home/anon/small.html b/Base/home/anon/small.html index f4031689e9..b3b4cd99b2 100644 --- a/Base/home/anon/small.html +++ b/Base/home/anon/small.html @@ -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> |