hl和css,github附加组件之间的sublime text 2链接

Jim*_*won 0 html css web

我认为将你的html文件链接到你的css文件的方法是写:

<link type= "text/css" rel= "firststylesheet" href= "firststylesheet.css"/>
Run Code Online (Sandbox Code Playgroud)

(鉴于我的css文件名是firststylesheet.css)但是当我将css和html文件上传到我的网站时,css文件没有连接,所有网站都在读取我的html文件.我该如何解决?

pic*_*ter 5

'rel'属性必须是"stylesheet"而不是"firststylesheet"

<link type="text/css" rel="stylesheet" href="firststylesheet.css"/>
Run Code Online (Sandbox Code Playgroud)