Thursday, May 1, 2025

Bootstrap 4 Badges


<?php include 'header.php' ?>

<div class="container-fluid">

<h1>Heading H1 - <span class="badge badge-success">Test</span></h1>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<h1 class="display-1">Heading H1 - <span class="badge badge-success">Test</span></h1>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<h1>Heading H1 - <span class="badge badge-success badge-pill">Test</span></h1>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<button type="button" class="btn btn-primary">
<span class="badge badge-light">125</span>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<button type="button" class="btn btn-primary btn-lg">
Posts...<span class="badge badge-light">125</span>

</div>

<?php include 'footer.php' ?>

No comments:

Post a Comment

Tkinter Introduction - Top Widget, Method, Button

First, let's make shure that our tkinter module is working ok with simple  for loop that will spawn 5 instances of blank Tk window .  ...