Interactive online courses HTML Academy
2026-03-09 10:58 Diff

Improvements, improvements, and more improvements. Muffin, although a cat, is no different from a typical boss, and wants still more tweaks:

  • The main heading could use a different font (typical boss),
  • The top margin is quite large (well, that’s fair),
  • The indentations in the list are a bit too small (yeah, just barely, but we get the idea).

Well, it looks like you can’t go on simply adding classes to the HTML. You will have to delve into the CSS code and edit it. CSS applies styles to the HTML tags using properties in the following format:

property: value;

For example:

color: red; /* red text color */ padding: 10px; /* 10 pixel inner padding */

To complete this task from the boss, all you need to do is change the values of the properties that are already in the CSS. We’ve marked the required properties with comments. By the way, you can specify comments in the CSS using the characters /* and */. Let’s proceed to the practice exercises.