如何在html页面链接css文件

发布于 2024-09-09 01:14:48 字数 223 浏览 8 评论 0原文

我有一些脚本..它位于一些目录中:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

巷子口的你 2024-09-16 01:14:48

假设 html 是您的 webroot,请将以下内容放入您的 head 标记中。

<link href="/dataTables-1.6/media/css/demo_page.css" rel="stylesheet" type="text/css" media="all">

这是你问的吗?

Assuming html is your webroot, place the following in your head tag.

<link href="/dataTables-1.6/media/css/demo_page.css" rel="stylesheet" type="text/css" media="all">

Is this what you were asking?

岁月染过的梦 2024-09-16 01:14:48

您可以使用完整的服务器路径“/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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文