x
1
2
<html>
3
<head>
4
<style>
5
p.hometown {
6
background: yellow;
7
}
8
</style>
9
</head>
10
11
<body>
12
<p>My name is Donald.</p>
13
<p class="hometown">I live in Ducksburg.</p>
14
15
<p>My name is Dolly.</p>
16
<p class="hometown">I also live in Ducksburg.</p>
17
18
</body>
19
</html>