How can I include css files using node, express, and ejs?

Use this in your server.js file

app.use(express.static(__dirname + '/public'));

and add css like

<link rel="stylesheet" type="text/css" href="https://stackoverflow.com/questions/24582338/css/style.css" />

dont need / before css like

<link rel="stylesheet" type="text/css" href="https://stackoverflow.com/css/style.css" />

Leave a Comment