The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

<!DOCTYPE html>
<html>
<head>
<title>Examples</title>
</head>
<body>
<div class="container">
<p>A basic badge:</p>
<pre>&lt;%= badge &#39;3&#39; %&gt;</pre>
<pre>&lt;span class=&quot;badge&quot;&gt;3&lt;/span&gt;&lt;/a&gt;</pre>
<div> <span class="badge">3</span></a></div>
<hr />
<p>A right aligned badge with a data attribute:</p>
<pre>&lt;%= badge &#39;4&#39;, data =&gt; { custom =&gt; &#39;yes&#39; }, right %&gt;</pre>
<pre>&lt;span class=&quot;badge pull-right&quot; data-custom=&quot;yes&quot;&gt;4&lt;/span&gt;</pre>
<div> <span class="badge pull-right" data-custom="yes">4</span></div>
<hr />
</div>
<pre style="background-color: #fff; border-width: 0px;">
</pre>
</body>
</html>