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: