<!-- wp:html --> <div class="promote-container"> <h2>Promote Your Music & Advertise with ZedBat</h2> <p> Want to get your music heard by a wider audience? Looking to advertise your business or brand on ZedBat? We offer top-notch <strong>music promotion</strong> and <strong>advertising</strong> services to help you reach your target audience effectively. </p>
<h3>Our Promotion & Advertising Services</h3> <ul> <li>Music Upload & Promotion</li> <li>Social Media Campaigns</li> <li>Banner & Sponsored Posts</li> <li>Radio & Online Ads</li> <li>Custom Promotional Packages</li> </ul>
<h3>Contact Us for Promotion & Ads</h3> <form id="promotionForm"> <input type="text" id="name" placeholder="Your Name" required> <input type="email" id="email" placeholder="Your Email" required> <input type="text" id="service" placeholder="Type of Promotion/Ad" required> <textarea id="message" placeholder="Your Message" required></textarea> <div class="send-buttons"> <button type="button" class="btn send-email" onclick="sendEmail()">Send via Email</button> <button type="button" class="btn send-whatsapp" onclick="sendWhatsApp()">Send via WhatsApp</button> </div> </form>
<br>
<div class="contact-buttons"> <a href="https://wa.me/260767792607" class="btn whatsapp">WhatsApp</a> <a href="tel:+260767792607" class="btn call">Call Us</a> </div> </div>
<style> .promote-container { max-width: 700px; margin: auto; padding: 20px; text-align: left; line-height: 1.6; font-family: Arial, sans-serif; } h2, h3 { color: #333; } ul { margin-left: 20px; } ul li { margin-bottom: 5px; } input, textarea { width: 100%; padding: 10px; margin: 5px 0; border: 1px solid #ccc; border-radius: 5px; } .send-buttons { display: flex; justify-content: space-between; margin-top: 10px; } .send-buttons .btn { flex: 1; margin: 5px; padding: 10px; font-weight: bold; color: white; border: none; cursor: pointer; border-radius: 5px; } .send-email { background: darkblue; } .send-whatsapp { background: green; }
.contact-buttons { margin-top: 15px; display: flex; justify-content: space-between; } .contact-buttons .btn { flex: 1; margin: 5px; padding: 12px; font-weight: bold; color: white; text-align: center; text-decoration: none; border-radius: 5px; } .whatsapp { background: green; } .call { background: blue; } </style>
<script> function sendEmail() { let name = document.getElementById('name').value; let email = document.getElementById('email').value; let service = document.getElementById('service').value; let message = document.getElementById('message').value;
window.location.href = `mailto:info@zedbat.net?subject=Promotion Inquiry from ${name}&body=Service: ${service}%0A${message}%0A%0AFrom: ${email}`; }
function sendWhatsApp() { let name = document.getElementById('name').value; let service = document.getElementById('service').value; let message = document.getElementById('message').value; let whatsappMessage = `Hello, my name is ${name}. %0AI am interested in: ${service}.%0A%0A${message}`; window.open(`https://wa.me/260767792607?text=${whatsappMessage}`, '_blank'); } </script>
<!-- /wp:html -->


