Thursday, May 1, 2025

Bootstrap 4 Alerts


<?php include 'header.php' ?>

<div class="container-fluid">

<div class="alert alert-success">
	<strong>Success !!!</strong> - You just sold 100 BTC
</div>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<div class="alert alert-success">
	<button type="button" class="close" data-dismiss="alert">&times;</button>
	<strong>Success !!!</strong> - You just sold 100 BTC
</div>

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<div class="alert alert-success alert-dismissible fade show">
	<button type="button" class="close" data-dismiss="alert">&times;</button>
	<strong>Success !!!</strong> - You just sold 100 BTC
</div>

</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 .  ...