Internal css in web development

What is internal CSS?

Internal CSS means that CSS is used inner in <head></head> of html.

Example:

1st Step: HTML File

​<html>
<head>

<style>
body {
background-color: blue;
}
</style>
</head>
<body></body> </html>


Output:

 

Priority of external CSS VS Internal CSS

When Priority of external css is high than internal CSS

Similar Problems to understand

  1. How to use HTML code in PHP?
  2. How to use Javascript code in PHP?
  3. How to use PHP code in Javascript? 
  4. How to use external CSS in HTML and PHP?
  5. How to use internal CSS in HTML and PHP?
  6. How to use inline CSS in HTML and PHP?