<!DOCTYPE html>
<html>
<head>
<title>My Business Website</title>
</head>
<body>
<?php include 'header.php'; ?>
<h1>Welcome to My Business Website!</h1>
<p>Here at My Business, we strive to provide the highest quality products and services to our customers. Our team of experts is dedicated to meeting your needs and exceeding your expectations.</p>
<h2>Our Products</h2>
<ul>
<li>Product 1</li>
<li>Product 2</li>
<li>Product 3</li>
</ul>
<h2>Our Services</h2>
<ul>
<li>Service 1</li>
<li>Service 2</li>
<li>Service 3</li>
</ul>
<?php include 'footer.php'; ?>
</body>
</html>
0 Comments