0
Link css to html
How to link css in HTML on sololearn app.
4 Respuestas
+ 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">
+ 2
In solo learn you don't have to link html with css. It's done by default.
+ 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>
0
No need to link here in sololearn