Completed 0 of 53 Exercises

CSS Border - Exercise 3

Use three border properties to display borders on the top, left, and right sides.

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div{
      border-style:dashed;
      border-width:6px;
      color:purple;
     
     
     
      }
    </style>
  </head>
  <body>
    <h1>Lorem Ipsum</h1>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
    <div>Here can be any information.</div>
  </body>
</html>