Related questions
how do you link css to a jade file?
I am currently trying to link normalize.css but its not working (using socket an express)
html
head
title= "Real time web chat"
link(href='/css/normalize.css')
script(src='/chat.js')
script(src='/socket.io/socket.…
How can I include css files using node, express, and ejs?
I'm trying to follow the instructions to https://stackoverflow.com/a/18633827/2063561, but I still can't get my styles.css to load.
From app.js
app.use(express.static(path.join(__dirname, 'public')));
In my .ejs, I have tried both of …
How to use font-awesome icons from node-modules
I have installed font-awesome 4.0.3 icons using npm install.
If I need to use it from node-modules how should I use it in html file?
If I need to edit the less file do I need to edit it in node-modules?