Part of the goal of css is to reduce how many styles you have to type.
One example from your css is font-family: Helvetica;
You since the whole page is using this font family we can just put into the body tag and not have to repeat it anymore as this will be used through out due to inheritance.
CSS repetition
Part of the goal of css is to reduce how many styles you have to type.
One example from your css is font-family: Helvetica;
You since the whole page is using this font family we can just put into the body tag and not have to repeat it anymore as this will be used through out due to inheritance.