Server Address : 2a02:4780:a:760:0:37cc:13e2:3
Web Server : LiteSpeed
Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64
PHP Version : 7.4.33
<?php
$active=2;
$title="About Us - MS Global Impex";
require "assets/nav.php";
$sql1="select * from content";
$query1=mysqli_query($conn,$sql1);
$content=mysqli_fetch_array($query1);
?>
<div class="about flex center">
<img src="content/<?php echo $image['about'];?>" alt="">
<div class="ab-content flex col center">
<p class="ab-head">About Us</p>
<div class="txt"><?php echo $content['about'];?></div>
</div>
</div>
<div class="row flex center wfull ab-row">
<div class="container ab-images flex col">
<img src="img/1.png" alt="">
<img src="img/2.png" alt="">
<img src="img/3.png" alt="">
<img src="img/4.png" alt="">
<img src="img/5.png" alt="">
</div>
</div>
<?php require "assets/footer.php";?>