如何在html页面链接css文件
我有一些脚本..它位于一些目录中:
var/www/html/dataTables-1.6/media/css/demo_page.css
如何放入 html 页面?
<link href=......??? rel="stylesheet" type="text/css" media="all">
i have some script..it lies in some direktori :
var/www/html/dataTables-1.6/media/css/demo_page.css
how to put in html page?
<link href=......??? rel="stylesheet" type="text/css" media="all">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设 html 是您的 webroot,请将以下内容放入您的
head
标记中。这是你问的吗?
Assuming html is your webroot, place the following in your
head
tag.Is this what you were asking?
您可以使用完整的服务器路径“/location/of/the/file/here.css”,也可以使用放置文件所在位置的相对路径。 “../back/one/directory.css”。或者您可以使用完整的网址“http://www.yourhost/yourwebRoot/yourfile.css ”。
You could use the full server path "/location/of/the/file/here.css" or you could use the relative path from where the file you are placing it in resides. "../back/one/directory.css". Or you could use the full web URL for it "http://www.yourhost/yourwebRoot/yourfile.css".