how to link i the situation?ndex.css to index.html | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
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?

9th May 2017, 7:31 PM
Odiljon Djamalov
Odiljon Djamalov - avatar
2 ответов
+ 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> ^^
10th May 2017, 4:39 AM
visph
visph - avatar
+ 3
inside your head tag <head> ..... <link rel="stylesheet" href="gulp.css" > </head>
9th May 2017, 7:39 PM
MR Programmer
MR Programmer - avatar