Thursday, May 1, 2025

Bootstrap 4 Images


<?php include 'header.php' ?>

<div class="container-fluid">

<img src="bs-4.jpg" class="float-right">

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<img src="bs-4.jpg" class="mx-auto d-block">

</div>

<?php include 'footer.php' ?>

<?php include 'header.php' ?>

<div class="container-fluid">

<img src="bs-4.jpg" class="rounded-circle img-fluid mx-auto d-block">

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