Welcome to the PHP Math Functions and Geometry Toolkit
Click on the images below to explore different functionalities!
Click on the images below to explore different functionalities!
<?php
include("includes/header.php"); // the common header HTML structure
?>
<h1>Welcome to the PHP Math Functions and Geometry Toolkit</h1>
<p>Click on the images below to explore different functionalities!</p>
<div style="display: inline-flex; justify-content: space-around; align-items: center;">
<!-- Link to PHP Math Functions Demonstration -->
<div style="text-align: center;">
<a href="mathfun1.php">
<img src="../images/PHPMathFunctionsDemonstration.webp" alt="PHP Math Functions Demonstration" width="375">
</a>
<p><strong>Explore PHP Math Functions</strong></p>
</div>
<!-- Link to PHP Geometry Toolkit -->
<div style="text-align: center;">
<a href="mathfun2.php">
<img src="../images/PHPGeometryToolkit.webp" alt="PHP Geometry Toolkit" width="375">
</a>
<p><strong>Explore PHP Geometry Toolkit</strong></p>
</div>
</div>
<?php
include("includes/footer.php"); // the common footer HTML structure
?>