使用 Bootstrap Jumbotron\n
Jumbotron 组件可以选择性地增大标题的大小,并在目标页面内容处留出大量空白。
如需使用它,请按以下步骤操作 −
- 创建一个带有样式 .jumbotron 的容器 <div>。
- 除了一个较大的 <h1>,还要将字体粗细降低为 200
举例说明 −
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <div class = "jumbotron"> <h1>Welcome to first page!</h1> <p>Example for jumbotron.</p> <p> <a class = "btn btn-primary btn-lg" role = "button">Button</a> </p> </div> </div> </body> </html>
广告