0
how to link i the situation?ndex.css to index.html
I am writing my styles in css file, however they arre not styling the elements. then I realized, maybe I did something wrong. could you help me in improving the situation? I am using the gulp. css file and html index are not placed in one folder. how to link them?
2 Respostas
+ 4
Anywhere you want in your html code, with a <link> tag as indicated previously...
Usually, inside the <head> part to be already parsed when parsing/displaying <body> part, but can be anywhere inside <html></html> ^^
+ 3
inside your head tag
<head>
.....
<link rel="stylesheet" href="gulp.css" >
</head>