I am using VS code to make a website and it says Hello World! I am trying to use <link rel='stylesheet type='text/css' href='style.css'>
. Except it is not linking correctly. In the css file I have h1{color:red;}
but the h1 is not red. If I put the style tag inside the HTML file it does work. How would I link the css code externally?
JavaScript
x
11
11
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Testing VS Code</title>
5
<link rel='stylesheet' type='text/css' href='style.css'>
6
</head>
7
<body>
8
<h1 id='test'>Hello World!</h1>
9
</body>
10
</html>
11
JavaScript
1
17
17
1
//node.js server:
2
var http = require('http');
3
var fs = require('fs');
4
5
const PORT=8080;
6
7
fs.readFile('index.html', function (err, html) {
8
9
if (err) throw err;
10
11
http.createServer(function(request, response) {
12
response.writeHeader(200, {"Content-Type": "text/html"});
13
response.write(html);
14
response.end();
15
}).listen(PORT);
16
});
17
How could I link the css file properly?
Advertisement
Answer
you need to adjust your css file path if your style.css
is in css folder in same directory you need to <link rel="stylesheet" href="./css/style.css">
if you’re using windows you can simply click ctrl
and href
link, it’ll show you if path exist in that directory