建立好CSS、js文件夹后,如何在代码中引进?
我是灰太狼
我是灰太狼 2017-02-20 13:21:53
0
2
1075

例如这些文件名是reset.js/、common.css、index.css

我是灰太狼
我是灰太狼

reply all(2)
数据分析师

After creating the CSS and js folders, how to introduce them into the code? -PHP Chinese website Q&A-After creating the CSS and js folders, how to introduce them into the code? -PHP Chinese website Q&A

Let’s take a look and learn.

刘奇

使用link标签,具体方法如下

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

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

<script type='text/javascript' src='.../js/reset.js'></script>


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template