Thundershocked
Thundershocked

Reputation: 25

My HTML and CSS files won't link

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

Answers (2)

Atlantis
Atlantis

Reputation: 592

try this:

    <link rel="stylesheet" type= "text/css" href="Stylesheet.css" />

Upvotes: 0

APAD1
APAD1

Reputation: 13666

If the files are in the same folder, then the href should just be:

href="Stylesheet.css"

Upvotes: 3

Related Questions