How to save HTML CSS inline and internal and external CSS files

How to save Inline Internal and external HTML CSS files?
whether in .css or .html format?

you save external CSS file with .css extension
by adding
<link rel="stylesheet" href="style.css" />
into a head tag

internal css you use <style></style> tag in your html file head tag

inline css you use style="" attribute in side your opening tag

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.