I am at my wit's end trying to link my CSS stylesheet to my HTML file, any and all help would be greatly appreciated!
- they are in the same folder
- my ide of choice is notepad++ (if that makes a difference)
- the naming of each file is correct
- I have tried multiple browsers
my code is as follows:
<!DOCTYPE html>
<html>
<head>
<title>Christian Potts' Virtual Resume</title>
<style>
<link rel = "stylesheet"
type = "text/css"
href = "style.css" />
</style>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
stylesheet:
/* style.css */
h1 {
color: Blue;
}