Completed 0 of 53 Exercises

CSS Border - Exercise 1

Set a "3px", "solid", and "blue" border for the <div> tag.

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      
    </style>
  </head>
  <body>
    <h1>Lorem Ipsum</h1>
    <div>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
  </body>
</html>