File size: 1,717 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="margin:0;font-family:sans-serif;background:#fff;color:#222;max-width:560px;margin:0 auto;padding:60px 20px;">
  <h1 style="font-size:28px;margin:0 0 8px;">Get in Touch</h1>
  <p style="color:#666;margin:0 0 32px;">We'll get back to you within 24 hours.</p>
  <div style="display:flex;gap:16px;margin-bottom:20px;">
    <div style="flex:1;">
      <label style="display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:#444;">First Name</label>
      <input style="width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid #e0e0e0;border-radius:6px;font-size:14px;">
    </div>
    <div style="flex:1;">
      <label style="display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:#444;">Last Name</label>
      <input style="width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid #e0e0e0;border-radius:6px;font-size:14px;">
    </div>
  </div>
  <label style="display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:#444;">Email</label>
  <input type="email" style="width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid #e0e0e0;border-radius:6px;font-size:14px;margin-bottom:20px;">
  <label style="display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:#444;">Message</label>
  <textarea rows="5" style="width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid #e0e0e0;border-radius:6px;font-size:14px;resize:vertical;margin-bottom:24px;"></textarea>
  <button style="padding:12px 28px;background:#111;color:#fff;border:none;border-radius:6px;font-size:15px;cursor:pointer;">Send Message</button>
</body>
</html>