// index.php
MADS - Multi-Channel Marketing
// database.php
// components/Navbar.php
// components/Footer.php
// components/HeroSection.php
Welcome to MADS
Boost Your Marketing Campaigns with IPC Target Audience Techniques
// components/Services.php
Our Services
- SEO & Link Building
- Inbound & Outbound Marketing
- Quality Assurance
- Sales & Support
// components/Blog.php
Latest Blogs
Coming Soon...
// components/ContactForm.php
// styles.css
body {
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
}
.navbar {
background: #0073e6;
color: white;
padding: 15px;
text-align: center;
font-size: 20px;
}
.footer {
background: #333;
color: white;
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
.contact-form {
background: white;
padding: 20px;
margin: 30px auto;
width: 50%;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input, textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
background: #0073e6;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background: #005bb5;
}