How do we add CSS into html? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

How do we add CSS into html?

10th Jul 2019, 5:50 AM
Rajnish Kush
Rajnish Kush - avatar
8 Answers
+ 4
In three ways you can add CSS[style] the HTML tags: 1 <link href="mystyle.css" rel="stylesheet" type="text/css"></link> 2 <head> <style> body{ background:red; } </style> </head> 3 <body> ...... ....... ............ <style> body{ background:red; } </style> </body> you can add inline style like below: <body style="background:red"></body>
15th Oct 2019, 7:42 AM
Mahesh Muttinti
+ 11
Bihari Babu Yes you add it into the <head> tag
10th Jul 2019, 1:00 PM
JTLZ
+ 10
I think we add it into the <head> tag of html. Isn't it?
10th Jul 2019, 5:51 AM
Rajnish Kush
Rajnish Kush - avatar
+ 3
<link rel="stylesheet" href="destination to your css file"> Put this between <head> tags.
10th Jul 2019, 6:05 AM
Inl Happy
Inl Happy - avatar
+ 3
<link rel="stylesheet" href="path of css file"> Add this line in your head tag inside the HTML tag. Hope it will help you.
10th Jul 2019, 6:55 AM
Rohit Kumar Srivastava
+ 3
In the head tag either by using style tag or <link rel="stylesheet" href="css file path">
14th Jul 2019, 5:33 AM
Sss
+ 3
İn <head > tag <link rel="stylesheet" type="text/css" href="style.css"> And create style.css but index and style.css in same folder you can change style.css's name
24th Jul 2019, 11:29 AM
Ruhullahyilmaz
Ruhullahyilmaz - avatar
+ 3
Para vincular tu archivo .css con tu archivo html usas la etiqueta <link> ejemplo: <head> <link rel="stylesheet" type="text/css" href="archivo.css"> </head>
24th Jul 2019, 6:11 PM
Samuel Alejandro Gonzalez
Samuel Alejandro Gonzalez - avatar