0
Where should I fit a css style in a html document
3 Answers
+ 5
In <style></style>
+ 4
Inline : <p style ="color:red;"></p>
Internal: <style> p {color:red;} </style
External: <link rel="stylesheet " type = "text/css" href = "file.css">
Both internal and external are placed between the <head> tags.
0
in style