Add some decoration to the highlighted word in the paragraph.
To do this, use the id ‘with-decoration’ for <span> tag.

A wavy red line should be drawn over the highlighted word.
Use external stylesheet. Use only one CSS property.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE html>
<html>
  <head>
    <style>
    </style>
  </head>
  <body>
    <p>
      Most programming is done with <span>programming languages</span>.
      A programming language is an artificially constructed language used to instruct computers.
    </p>
  </body>
</html>