I'm not sure why the CSS is being ignored here. Is there something specific I need to do with NodeJS in order to be able to use CSS inside HTML? Has it got anything to do with the tag's "type" attribute?
The NodeJS code:
app.get('/', function(request, response){
response.sendFile('/home/ubuntu/index.html');
});
HTML code (index.html):
....
<link href="styles.css" rel="stylesheet" type="text/css" />
....