File size: 472 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>
  <h1>Get in Touch</h1>
  <p>We'll get back to you within 24 hours.</p>
  <div>
    <div>
      <label>First Name</label>
      <input>
    </div>
    <div>
      <label>Last Name</label>
      <input>
    </div>
  </div>
  <label>Email</label>
  <input type="email">
  <label>Message</label>
  <textarea rows="5"></textarea>
  <button>Send Message</button>
</body>
</html>