我正在尝试将库导入我的.html文件。 当我尝试使用npm,bower,tags,@ import时,它无效。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="3" />
<title>yummyTea</title>
<link rel="stylesheet" href="/node_modules/bootstrap/dist/bootstrap.css">
<link rel="stylesheet" style="css/text" href="css/bootstrap.css">
</head>
<body>
<h1 class='container'>Bootstrap</h1>
<style>
@import url('css/bootstrap.css');
</style>
<script src="js/bootstrap.js"></script>
</body>
</html>
^库不在我的服务器上呈现。 我已经尝试了多种解决方案,而且我只是希望尽快使用它。
是的,npm和bower都已正确安装/初始化到应用程序中。
我将使用CDN,因为它们现在正在使用。
答案 0 :(得分:0)
您似乎错过了@import
代码。
此外,您的CSS <script>
指令位于<style>
代码内,而不是wordList
代码。