Thursday, February 23, 2017

Bootstrap Example-Egihteen (Bootstrap Typography)


Bootstrap Example-Eighteen (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 .small class to make the text smaller:</p>
      <p class="small">This paragraph is smaller.</p>
      <p>This is a regular paragraph.</p>
    </div>
  </body>
 
</html>


You wil find the below result as like as:

Typography

Use the small class to make the text smaller:
This paragraph is smaller.
This is a regular paragraph.








3 comments: