Completed 0 of 53 Exercises

CSS Border - Exercise 5

Add a border style for each side. The top border must be dashed, the right border must be double, the bottom border must be dotted, and the left border must be solid.

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      p {
      border-color:purple;
      border-width:5px;
      
      
      
      
      }
    </style>
  </head>
  <body>
    <h1>Example of individual border sides.</h1>
    <p>This is some paragraph.</p>
  </body>
</html>