blob: 4999f4fa5d547088287a4a12fda137cc23645984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
p {
color: fuchsia;
}
span {
color: silver;
}
</style>
<body>
<p>The first line of this paragraph should be fuchsia (same as in the next block).<br /><span>Filler text.</span></p>
<p>Lorem ipsum dolor.<br /><span>Filler text.</span></p>
</body>
|