Styles are plugged in and everything works fine. Let’s add a slight tweak to it.
Align the heading <h1> to the center of the screen.

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>
<html>
  <head>
    <title>Blog</title>
    <link rel="stylesheet" type="text/css" href="./styles.css">
  </head>
  <body>
    <h1>Entry 2101</h1>
    <h6>Date: 01.01.2021</h6>
    <p>Ready for new challenges</p>
  </body>
</html>

styles.css

h1 {
    text-align: left;
}