@ -9,6 +9,7 @@
< title > Contact Form< / title >
< title > Contact Form< / title >
<!-- Tailwind CSS -->
<!-- Tailwind CSS -->
< script src = "https://cdn.tailwindcss.com" > < / script >
< script src = "https://cdn.tailwindcss.com" > < / script >
<!-- EmailJS SDK -->
<!-- EmailJS SDK -->
< script src = "https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js" > < / script >
< script src = "https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js" > < / script >
< script >
< script >
@ -17,7 +18,8 @@
})();
})();
< / script >
< / script >
< / head >
< / head >
< body class = "bg-gray-50 text-gray-800" >
< body >
< header >
< header >
<!-- Navigation -->
<!-- Navigation -->
< nav class = "navbar" >
< nav class = "navbar" >
@ -40,7 +42,7 @@
< / nav >
< / nav >
< / header >
< / header >
<!-- Contact Form -->
<!-- Contact Form -->
< link type = "text/css" rel = "stylesheet" href = "style.css?v=1.0" > <!-- Css include placed here because for some reason it doesn't work otherwise (still hasn't fixed footer position) -->
< form id = "contact-form" class = "container mx-auto mt-10 px-4" >
< form id = "contact-form" class = "container mx-auto mt-10 px-4" >
< div class = "max-w-md mx-auto px-8 py-6 bg-gray-800 rounded-lg shadow-lg" >
< div class = "max-w-md mx-auto px-8 py-6 bg-gray-800 rounded-lg shadow-lg" >
< h2 class = "text-2xl font-semibold text-white mb-4" > Contact Us< / h2 >
< h2 class = "text-2xl font-semibold text-white mb-4" > Contact Us< / h2 >
@ -66,11 +68,12 @@
< p id = "response-message" class = "hidden text-center mt-4 text-white" > < / p >
< p id = "response-message" class = "hidden text-center mt-4 text-white" > < / p >
<!-- External JS -->
<!-- External JS -->
< script src = "form-handler.js" > < / script >
< script src = "form-handler.js" > < / script >
< footer >
< footer >
< p > © 2025 Corentin Caillot. Tous droits réservés.< / p >
< p > © 2025 Corentin Caillot. Tous droits réservés.< / p >
< p > 📧 Contactez-moi : < a href = "mailto:contact@corentincaillot.com" > contact@corentincaillot.com< / a > < / p >
< p > 📧 Contactez-moi : < a href = "mailto:contact@corentincaillot.com" > contact@corentincaillot.com< / a > < / p >
<!-- <p><a href="https://github.com/">GitHub</a> | <a href="https://linkedin.com/">LinkedIn</a></p> -->
<!-- <p><a href="https://github.com/">GitHub</a> | <a href="https://linkedin.com/">LinkedIn</a></p> -->
< / footer >
< / footer >
< / body >
< / body >
< / html >
< / html >