Reputation: 25
My HTML and CSS files will not link up. Both files are in the same folder.
HTML (Home.HTML)
<head>
<link rel="stylesheet" type= "text/css" href="/Webpage/Stylesheet.css" />
<title>Webpage</title>
</head>
<body>
</body>
</html>
Stylesheet (Stylesheet.css)
body{
backround-color: #7894D6;
}
Upvotes: 1
Views: 151
Reputation: 592
try this:
<link rel="stylesheet" type= "text/css" href="Stylesheet.css" />
Upvotes: 0
Reputation: 13666
If the files are in the same folder, then the href should just be:
href="Stylesheet.css"
Upvotes: 3