-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
83 lines (79 loc) · 3.16 KB
/
contact.html
File metadata and controls
83 lines (79 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Sutton A.I.</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header-content">
<img src="logo_sanstext.png" alt="Sutton A.I. Logo" class="logo" loading="lazy">
<h1>Sutton A.I.</h1>
<nav>
<ul>
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="services.html" class="nav-link">Services</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="contact-form-section">
<h2>Contact Us</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone">
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" id="company" name="company">
</div>
<div class="form-group">
<label for="service">Interested In</label>
<select id="service" name="service">
<option value="">Select a Service</option>
<option value="ai-workshop">AI-Powered Workshops</option>
<option value="ai-implementation">AI Application Implementation</option>
<option value="ai-strategy">AI Strategy & Optimization</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
</div>
<div class="checkbox-group">
<label>
<input type="checkbox" name="newsletter" value="yes">
Subscribe to our newsletter
</label>
<label>
<input type="checkbox" name="consultation" value="yes">
Request a free consultation
</label>
</div>
<button type="submit" class="submit-button">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2025 Sutton A.I. All rights reserved.</p>
<a href="contact.html" class="footer-contact-link">Contact Us</a>
<div class="social-media">
<a href="https://twitter.com/suttonai" target="_blank" aria-label="Twitter"><img src="twitter-icon.png" alt="Twitter" loading="lazy"></a>
<a href="https://linkedin.com/company/suttonai" target="_blank" aria-label="LinkedIn"><img src="linkedin-icon.png" alt="LinkedIn" loading="lazy"></a>
</div>
</footer>
</body>
</html>