Where should I fit a css style in a html document | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Where should I fit a css style in a html document

10th Jan 2017, 6:35 AM
Lungisa Mangi Sobhuwa
Lungisa Mangi Sobhuwa - avatar
3 Answers
+ 5
In <style></style>
10th Jan 2017, 6:56 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 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.
10th Jan 2017, 7:10 AM
Rosen
Rosen - avatar
0
in style
14th Jan 2017, 1:44 AM
sanchit wadehra
sanchit wadehra - avatar