0
How use CSS with html?
What is concept of extension of .CSS and .html
1 Answer
+ 1
Using css with html ?
// Same Page
You can use <style> </style> inside tag <head> </head> in html if that in same page like this :
<head>
<style>
body { background-color: blue;}
</style>
</head>
// Extension File
If you use extensions then use a link rel inside head tag like this :
<head>
<link rel="stylesheet" type="text/css"
href="style.css">
</head>
file with .CSS which means that file only contains css so there is no need any html tag.



