1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:37:43 +00:00

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. :^)
This commit is contained in:
Andreas Kling 2019-10-01 20:16:09 +02:00
parent d481ae95b5
commit 53db492aba
3 changed files with 0 additions and 0 deletions

View file

@ -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>