How Tutorial
how-give-multiple-class-html-elementUse CSS With HTMLhow-to-make-link-in-page-in-htmlHow-Link-css-file-to-Html-fileHow-To-Make-Div-Align-CenterHow-to-create-html-button-colorfulhow-to-add-css-file-in-htmlhow-to-use-javascript-in-htmlJavaScript Sorting Multidimensional ArrayHow To Link CSS To HTMLHow To Remove Scroll bar in CSSDSA Full FormHow Long Does It take to learn JavaScriptUes Style With HTML Element
CSS Property apply in html element by 3 method
1 : Inline CSS
2 : Internal CSS
3 : External CSS
Inline CSS
Inline css property use within the html tag
Inline css property are more effective than internal css and external css property
Inline css syntax is style attribute
Example
In output heading color is blue
The good experience to use css is external css file or internal css
Internal CSS
Internal css code write in same file . Internal css write within a style tag
syntax of internal css
<style> /* your code */ </style>
Example
Internal css code example
When use inetrnal css the CSS code readability is much better
External css
External css that mean all css code written in a separate file . File extention is .css
Maximum Web Developer use a external css file . it more better to modify and reusability
HTML file name is index.html
External css file name is style.css
External css no need to use style tag
One more time . I recomended to use external css