BootStrap基本模板
2017-05-15 22:16 心猿意‘码’ 阅读(315) 评论(0) 编辑 收藏 举报模板代码如下:
<!-- 声明 --> <!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>
使用时注意引入路径!