express: how to send html together with css using sendFile?

var app = require(‘express’)(); app.get(‘/’, function(req, res) { res.sendFile(__dirname + “/” + “index.html”); }); <link rel=”stylesheet” href=”style.css” rel=”nofollow noreferrer noopener”> I used the above node.js code to send a html file. To get the html file formatted I need to send another css file(style.css). My question is: how can I send both of these two … Read more