Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
  box-sizing: border-box;
}
ul.list-group {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.list-group li {
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
}
ul.list-group .badge {
  background-color: red;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  padding: 5px 10px;
  text-align: center;
  margin-left: 5px;
}
</style>
</head>
<body>
<h2>List Group with Badges</h2>
<p>Add badges to a list group:</p>
<ul class="list-group">
  <li>Inbox <span class="badge">2</span></li>
  <li>Other <span class="badge">5</span></li>
  <li>Saved</li>
  <li>Stuff</li>
  <li>Old</li>
</ul>
</body>