Syntax error Usage of Bootstrap label class

Usage of Bootstrap label class



Bootstrap label class is used to add labels such as tips, count, etc.

Let us see an example to implement label class

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <h1>Tools
         <span class = "label label-default">
            40
         </span>
      </h1>
      <h2>QA
         <span class = "label label-default">
            1000
         </span>
      </h2>
   </body>
</html>
Updated on: 2020-06-12T21:01:32+05:30

262 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements