HTML ページの head 要素に多くの LINK 要素と SCRIPT 要素を配置する必要がある場合があります。また、上記の同じ要素を持つページが多数存在する可能性があります。したがって、それらすべてを 1 つのファイルに入れ、そのファイルを含むリンクのみを HTML の head 要素に配置することはできますか?
例: 次のようなもの
<link href="links.something"> etc
それ以外の
<HEAD>
<link href="css/home.css" rel="stylesheet" type="text/css" media="screen" />
<link href="css/images.css" rel="stylesheet" type="text/css" media="screen" />
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="css/smoothness/jquery-ui-1.9.2.custom.css" rel="stylesheet">
<script src="js/jquery-1.8.3.js"></script>
<script src="js/jquery-ui-1.9.2.custom.js"></script>`
<HEAD>