引入CSS
<link href="文件地址" rel="stylesheet" type="text/css" />
href 值为外部资源地址,这里是css的地址
rel 定义当前文档与被链接文档之间的关系,这里是外部css样式表即stylesheet
type 规定被链接文档的 MIME 类,这里是值为text/css
引入JS
<script type="text/javascript" src="../js/jquery-1.8.3.js"></script>
//(相对路径)
<script src="http://www.baidu.com/script/jquery.js" type="text/javascript"></script>
//(绝对路径)