例如这些文件名是reset.js/、common.css、index.css
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>
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>