guys whats better way of styling my typography?
using inline html styles of using css styles?
Using external CSS is better. It makes for code that’s easier to maintain and understand.
1 Like
Always go for external CSS styles. It differentiates the styles from html and makes the code better.
1 Like
Definitely external css. Imagine a project with more than two kinds of fonts. Now imagine that you should replace these fonts. It will be harder to search for this font in each element in HTML than in a css file
1 Like
External CSS is Better than Inline CSS.