Link css to html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Link css to html

How to link css in HTML on sololearn app.

14th May 2020, 9:50 AM
Nahid
Nahid - avatar
4 Answers
+ 1
probably this is what you want <link rel="stylesheet" href="stylesheet.css" type="text/css"> ^ | and this one you have to gange it if you have the css file like "css(1).css" you have to chage it like this :<link rel="stylesheet" href="css(1).css" type="text/css">
14th May 2020, 9:54 AM
FoXi Tee
FoXi Tee - avatar
+ 2
In solo learn you don't have to link html with css. It's done by default.
14th May 2020, 10:52 AM
Sajid
Sajid - avatar
+ 1
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>title</title> <link rel="stylesheet" href="stylesheet.css" type="text/css"> </head> <body> </body> </html>
14th May 2020, 9:51 AM
FoXi Tee
FoXi Tee - avatar
0
No need to link here in sololearn
14th May 2020, 5:11 PM
Md. Aktaruzzaman Talukdar
Md. Aktaruzzaman Talukdar - avatar