So far, we've used inline CSS to style the individual heading elements on the webpage.

Next, we'll add style tags and apply styles to multiple elements with just a few lines.

<html><body> <h2>Spanish Vocabulary</h2> <h3 style="background-color: darkSeaGreen;">Easy</h3> <p> - el abrigo, el lazo, la agujeta, el overol</p> <h3 style="background-color: khaki;">Good</h3> <p> - los huevos revueltos, el calzoncillo, los pantalones</p> <h3 style="background-color: pink;">Hard</h3> <p> - los desarrolladores, los calcetines</p> </body> </html>]]>