一般Web项目的HTML文件如下所示:、 <!DOCTYPE html> <html> <head> <title>Bootstrap 101 Template</title> </head> <body> <h1>Hello, world!</h1> </body> </html> 使用Bootstrap时,则要包含它的CSS样式表和JavaScript文件: <!DOCTYPE html> <html> <head> <title>Bootstrap 101 Template</title> <link href="css/bootstrap.min.css" rel="stylesheet"> </head> <body> <h1>Hello, world!</h1> <script src="js/bootstrap.min.js"></script> </body> </html> 别忘了HTML5的文档类型声明。 只要包含<!DOCTYPE html>,所有现代浏览器都启动标准模式。