blob: 2655fbb1817cb9e36c487ef55228dc753a77bde9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>
|