How to create basic bootstrap page with Bootstrap

2 Answers

0 votes
<!DOCTYPE html>
<html lang="en">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet"
        href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>

<body>
 
<div class="container">
  <h1>Bootstrap</h1>
  <p>Bootstrap</p> 
</div>

</body>
</html>

 



answered Jun 26, 2017 by avibootz
0 votes
<!DOCTYPE html>
<html lang="en">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet"
        href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>

<body>
 
<div class="container-fluid">
  <h1>Bootstrap</h1>
  <p>Bootstrap</p> 
</div>

</body>
</html>

 



answered Jun 26, 2017 by avibootz

Related questions

...