x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    #unique {
5
        font-size: 2em;
6
        color: yellowgreen;
7
    }
8
</style>
9
10
<blockquote>Price is what you pay. <span id="unique">Value</span> is what you get.</blockquote>
11
12
<p>Note that an ID can only be applied to one element on the page. To apply styles to more than one element, uses classes.</p>