Let’s change the border color.
- The top border should be yellow
- The bottom border should be red
- The left border should turn violet.
- The right one should remain green.
Do not change the number of paragraphs, or the width and style of the border.
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>
p {
border: 1px solid green;
}
</style>
</head>
<body>
<p>
There’s a voice that keeps on calling me. Down the road, that’s where I’ll always be.
Every stop I make, I make a new friend. Can’t stay for long, just turn around and I’m gone again.
Maybe tomorrow, I’ll want to settle down, Until tomorrow, I’ll just keep moving on.
</p>
</body>
</html>