简体   繁体   中英

I'm having trouble linking the css file in my html

When I open the html file in chrome or IE, the background color and font size doesn't change and I don't know why. Is it the way I linked to the css file from the html? Is the path wrong? Should I use / instead of \ in the path name? Is the css content of the css file ok?

This is the head section of my html document (notepad):

<head>

<meta charset="UTF-8">

<title>Final Project</title>

<link rel="stylesheet" href="/CSS3/css/styles"/>

</head>

This is the content of my.css document (I'm using notepad):

h1{

background:#B3B3B3;

font-size:150%;

}

My css file is located here --> C:\Users\m529759\OneDrive for Business\Desktop\Web Design Course\CSS3\css

My html file is located here--> C:\Users\m529759\OneDrive for Business\Desktop\Web Design Course\CSS3\html

Since you are using external CSS:

HTML document:

<!DOCTYPE html>
<html>
<head>

<meta charset="UTF-8">

<title>Final Project</title>

<link rel="stylesheet" href="/home/bhavya/Desktop
/styles.css">

</head>
<body>

<h1>This is a heading</h1>


</body>
</html>

Content of styles.css document

body {
  background-color: powderblue;
}
h1{

background:#B3B3B3;

font-size:150%;

}

So the reultant output will be:

在此处输入图像描述

Update 1:

I think there is some syntactic error in the path which you are using C:\Users\m529759\OneDrive for Business\Desktop\Web Design Course\CSS3\css

DO CHECK YOUR PATH AGAIN, AND DONT FORGET TO SAVE YOUR CSS FILE WITH .css extension AND YOUR HTML FILE WITH .html extension

I had a folder with 2 folders in them. One named html and the other css. I fixed this by deleting the html folder and putting the html document in the folder, like this: revised file path

I also changed the <head> link in the html file, like this: <link rel="stylesheet" href="css/style.css"> and it worked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM