-
Welcome to the Ambulance Monitoring System
-
-
-
-
Quick Emergency Response
-
- Ensures patients receive timely medical assistance by locating the
- nearest hospitals and ambulances.
-
-
-
-
-
Real-Time Tracking
-
- Provides real-time updates on ambulance locations and traffic
- conditions, optimizing route management.
-
-
-
-
-
24/7 Availability
-
- Ensures round-the-clock service, making sure that help is just a
- call away, anytime, anywhere.
-
+
+
+
+
+
+
-
-
-
-
-
-
-
Meet the Team
-
-
-
- Learn more about our dedicated team working tirelessly to ensure
- efficient ambulance monitoring and resource management.
-
-
Go to Team
-
-
-
+
+
+
+
+
-
-
+
+
+
+
+
+
Subscribe to Our Newsletter
+
+
+
+
+
+
+
+
+
+
+
© 2024 Ambulance Monitoring System. All rights reserved.
+
+
+
+
+
+
+ // Add this new code for handling the newsletter form submission
+ document.getElementById('newsletter-form').addEventListener('submit', function(e) {
+ e.preventDefault();
+ var email = this.querySelector('input[type="email"]').value;
+ var messageElement = document.getElementById('subscription-message');
+
+ // Here you would typically send the email to your server
+ // For this example, we'll just show a success message
+ messageElement.textContent = 'Thank you for subscribing!';
+ messageElement.style.display = 'block';
+
+ // Clear the form
+ this.reset();
+
+ // Hide the message after 5 seconds
+ setTimeout(function() {
+ messageElement.style.display = 'none';
+ }, 5000);
+ });
+
-
+