Bootstrap Abbreviations Example

  Keywords : typography, bootstrap, bootstrap typography, bootstrap abbreviations, text abbreviations, bootstrap text abbreviations example, bootstrap typography text abbreviations

Example

 
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bootstrap Abbreviations Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
    <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
    <style>
        .bcontent {
            margin-top: 10px;
        }
    </style>
</head>
<body>
    <div class="container bcontent">
        <p><abbr title="One stop lane for tutorials">Tutlane.com</abbr></p>
        <p><abbr title="Bootstrap is a CSS/JS Framework">Bootstrap</abbr> Tutorial</p>
    </div>
</body>
</html>


Result