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:
 |
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:
 |