23 lines
508 B
HTML
23 lines
508 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
p {
|
|
color: fuchsia;
|
|
}
|
|
div {
|
|
color: orange;
|
|
}
|
|
h4 {
|
|
color: blue;
|
|
}
|
|
.silver {
|
|
color: silver;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p><em>This text should be fuchsia.</em> <span class="silver">Filler text.</span></p>
|
|
<div>This text should be orange.</div>
|
|
<p class="silver">Filler text.</p>
|
|
<h4>This text should be blue. <span class="silver">Filler text.</span></h4>
|
|
</body>
|