Can someone explain me, what is better? Nowadays, we have HTML 4,5 that we can do this:
<p style="color: #3377ff; text-size: 25px"> Hello World! </p>
If today we can do the style in the HTML file, why we should make another CSS file?
Another question:
What is better? To make a
<style>
........
</style>
inside the same HTML file, or another CSS file with all our CSS?
Thanks!