<LINK rel=stylesheet type=text/css href="path/to/stylesheet.css"> <SCRIPT type=text/javascript src="path/to/script.js"></SCRIPT>在HTML5中,不再需要type属性了,因为这显得有点多余,去掉之后可以让代码更为简洁。
<LINK href="path/to/stylesheet.css"> <SCRIPT src="path/to/script.js"></SCRIPT>