15 lines
361 B
HTML
15 lines
361 B
HTML
<!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>
|