2021 | 2% |
---|---|
2022 | 10% |
2023 | 8% |
100
75
50
25
0
It is a good practice to move all the inline CSS rules into an external file in order to make your page "lighter" in weight and decrease the code to text ratio.
For example:
<!--this HTML code with inline CSS rule:--> <p style="color:red; font-size: 12px">some text here</p> <!--would became:--> <p>some text here</p> <!--and the rule added into your CSS file:--> p{color:red; font-size: 12px}