Part of the Fibonacci sequence is specified in the index.html file.
But the numbers fuse. Let’s improve the styling and make every second number bold.

Use internal styles and classes. The class name should be bold-item.
Don’t change the number of blocks.

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>
  <head>
    <title>Fibonacci Sequence</title>
    <style>
      .fibonacci-number {
        color: saddlebrown;
      }
    </style>
  </head>
  <div class="fibonacci-number">13</div>
  <div class="fibonacci-number">21</div>
  <div class="fibonacci-number">34</div>
  <div class="fibonacci-number">55</div>
  <div class="fibonacci-number">89</div>
  <div class="fibonacci-number">144</div>
</html>