File size: 1,128 Bytes
cf6c0e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Contact</title></head>
<body style="font-family:sans-serif; background:#fff; color:#222; max-width:560px">
  <h1 style="font-size:28px">Get in Touch</h1>
  <p style="color:#666">We'll get back to you within 24 hours.</p>
  <div style="gap:16px">
    <div style="">
      <label style="font-size:13px; font-weight:600; color:#444">First Name</label>
      <input style="border:1px solid #e0e0e0; font-size:14px">
    </div>
    <div style="">
      <label style="font-size:13px; font-weight:600; color:#444">Last Name</label>
      <input style="border:1px solid #e0e0e0; font-size:14px">
    </div>
  </div>
  <label style="font-size:13px; font-weight:600; color:#444">Email</label>
  <input type="email" style="border:1px solid #e0e0e0; font-size:14px">
  <label style="font-size:13px; font-weight:600; color:#444">Message</label>
  <textarea rows="5" style="border:1px solid #e0e0e0; font-size:14px; resize:vertical"></textarea>
  <button style="background:#111; color:#fff; border:none; font-size:15px; cursor:pointer">Send Message</button>
</body>
</html>