<title>राकेश गुर्जर का पेज</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333; margin: 0; padding: 0; } h1 { text-align: center; color: #0056b3; padding: 20px; } p { text-align: center; font-size: 18px; margin: 20px; } .button, .form-button { display: block; width: 200px; margin: 0 auto; padding: 10px; text-align: center; background-color: #0056b3; color: white; border: none; border-radius: 5px; cursor: pointer; } .button:hover, .form-button:hover { background-color: #003d80; } .form-container { text-align: center; margin: 20px; } .form-input { display: block; width: 80%; margin: 10px auto; padding: 10px; border: 1px solid #ddd; border-radius: 5px; } </style>
राकेश गुर्जर
मुझे कोडिंग के बारे में अच्छा ज्ञान है।
Click Me
Contact Me
<textarea id="message" class="form-input" placeholder="Your Message" rows="4" required></textarea> Send Message <script> function showAlert() { alert('Button was clicked!'); } function handleFormSubmit(event) { event.preventDefault(); // Prevents the default form submission const name = document.getElementById('name').value; const email = document.getElementById('email').value; const message = document.getElementById('message').value; alert(`Thank you, ${name}! Your message has been received.`); // You can add code here to send form data to a server } </script>
राकेश गुर्जर
मुझे कोडिंग के बारे में अच्छा ज्ञान है।
Click MeContact Me
<textarea id="message" class="form-input" placeholder="Your Message" rows="4" required></textarea> Send Message