Completed 0 of 53 Exercises

CSS Border - Exercise 2

Set the border color of the <div> tag to "blue".

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      div{
      border-style:dashed;
      border-width:6px;
      
      }
    </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>