Thursday, February 23, 2017

Bootstrap Example-Seventeen (Bootstrap Typography)


Bootstrap Example-Seventeen (Bootstrap Typography)


To write the below html code


<!DOCTYPE html>
<html>
<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">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h2>Typography</h2>
  <p>Use the .lead class to make a paragraph "stand out":</p>
  <p class="lead">This paragraph stands out.</p>
  <p>This is a regular paragraph.</p>
</div>

</body>
</html>


You wil find the below result as like as:

Typography

Use the .lead class to make a paragraph "stand out":
This paragraph stands out.
This is a regular paragraph.



 




1 comment: