diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-01 20:16:09 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-01 20:16:09 +0200 |
commit | 53db492aba9c3155835b89417e6b8281ef9465ed (patch) | |
tree | c2cc8b1ffeadea019d3477194addc12ef0536408 /Base/home/anon/www/css.html | |
parent | d481ae95b5f1267a06221af7e3b77cfa3d4872d7 (diff) | |
download | serenity-53db492aba9c3155835b89417e6b8281ef9465ed.zip |
Base: Rename the "html" test directory to "www"
It was conflicting with the html program and I'm too lazy to deal with
that right now. :^)
Diffstat (limited to 'Base/home/anon/www/css.html')
-rw-r--r-- | Base/home/anon/www/css.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Base/home/anon/www/css.html b/Base/home/anon/www/css.html new file mode 100644 index 0000000000..2655fbb181 --- /dev/null +++ b/Base/home/anon/www/css.html @@ -0,0 +1,24 @@ +<html> + <head> + <title>CSS test</title> + <style type="text/css"> + #foo { + background-color: #ff0000; + color: #00ffff; + } + #bar { + background-color: #00ff00; + color: #ff00ff; + } + #baz { + background-color: #0000ff; + color: #ffff00; + } + </style> + </head> + <body> + <div id="foo">This is foo</div> + <div id="bar">This is bar</div> + <div id="baz">This is baz</div> + </body> +</html> |