Bootstrap Text Inside an <abbr> Element




Bootstrap Text Inside an <abbr> Element

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href="css/bootstrap.min.css">
      <script src="scripts/jquery.min.js"></script>
      <script src="js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class="container">
         <h2>Cricket</h2>
         <p>The <abbr title="International Cricket Council">ICC</abbr> governs cricket boards.</p>
         <p>The <abbr title="International Cricket Council" class="initialism">ICC</abbr> was founded as the Imperial Cricket Conference in 1909</p>
         <p>Above the ICC abbreviation text is displayed with a smaller font.</p>
      </div>
   </body>
</html>

Output