Spaces:
Running
Running
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <title>Contact Me</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| <style> | |
| form { | |
| margin-top: 20px; | |
| } | |
| input, textarea { | |
| display: block; | |
| margin: 10px 0; | |
| padding: 12px; | |
| width: 100%; | |
| border: 1px solid #e2e8f0; | |
| border-radius: 6px; | |
| color: #334155; | |
| } | |
| button { | |
| background: #2563eb; | |
| color: #f8fafc; | |
| padding: 12px 24px; | |
| border: 2px solid #1e40af; | |
| border-radius: 12px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| } | |
| button:hover { | |
| background: #1d4ed8; | |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="card"> | |
| <h1>Contact Me</h1> | |
| <form> | |
| <input type="text" placeholder="Your Name"> | |
| <input type="email" placeholder="Your Email"> | |
| <textarea placeholder="Your Message"></textarea> | |
| <button type="submit">Send Message</button> | |
| </form> | |
| <a href="index.html" style="display: inline-block; margin-top: 20px; padding: 12px 24px; background: #2563eb; color: #f8fafc; border-radius: 12px; text-decoration: none; font-weight: 600; border: 2px solid #1e40af;">Back to Home</a> | |
| </div> | |
| </body> | |
| </html> |