@ -7,7 +7,7 @@ Just like in HTML, you can add a `<style>` tag to your component. Let's add some
```html
```html
<style>
<style>
p {
p {
color: purple;
color: rebeccapurple;
font-family: 'Comic Sans MS';
font-family: 'Comic Sans MS';
font-size: 2em;
font-size: 2em;
}
}
@ -16,4 +16,4 @@ Just like in HTML, you can add a `<style>` tag to your component. Let's add some
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
```
```
Importantly, these rules are *scoped to the component*. You won't accidentally change the style of `<p>` elements elsewhere in your app, as we'll see in the next step.
Importantly, these rules are *scoped to the component*. You won't accidentally change the style of `<p>` elements elsewhere in your app, as we'll see in the next step.