BootStrap基本模板

模板代码如下:

<!-- 声明 -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 元数据 -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
<!-- IE渲染 -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- 高速模式 -->
    <meta name="renderer" content="webkit">
<!-- SEO引擎优化 -->
    <meta name="author" content="">
    <meta name="keywords" content="">
    <meta name="discription" content="">
    <title>BootStrap使用模板</title>
<!-- 样式 -->
    <link rel="stylesheet" href="bootstrap/bootstrap.min.css">
    <link rel="stylesheet" href=".css">
<!-- 脚本 -->
    <script src="jquery.min.js"></script>
    <script src="bootstrap/bootstrap.min.js"></script>
<!-- 兼容性问题 -->
    <!-- [if it IE 9] -->
    <script src="scripts/html5shiv.min.js"></script>
    <script src="scripts/respond.min.js"></script>
    <!-- [endif] -->
</head>
<body>
    
</body>
</html>

  使用时注意引入路径!

原文地址:https://www.cnblogs.com/wccc/p/6858773.html