- 4
HTML
Hello can you tell me that in web style making HTML is best or css .
3 Answers
+ 4
Putting your CSS in the style tag is okay for practice. But as projects get bigger it is better to put your CSS in a separate style.css document. So that your HTML isn't cluttered.
+ 2
Just to add onto what Chris Coder , especially if you have more than one HTML file, you don't want to keep having to copy and paste over your CSS. You would be able to just link multiple HTML file to the same CSS which makes you pages easier to debug.
0
Thanks.