-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
78 lines (64 loc) · 1.7 KB
/
contact.html
File metadata and controls
78 lines (64 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
background: #f8fafc;
color: #1f2937;
margin: 0;
padding: 40px 16px;
line-height: 1.6;
}
h1 {
font-size: 2rem;
margin-bottom: 16px;
color: #0f172a;
}
p {
max-width: 680px;
margin-bottom: 14px;
font-size: 1rem;
}
strong {
font-weight: 600;
}
a {
color: #10675d;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: 40px;
font-size: 0.875rem;
color: #6b7280;
}
</style>
</head>
<body>
<h1>Contact Us</h1>
<p>
Have questions, suggestions, or need help with our service? We’re always happy to hear from you.
Your feedback helps us improve and provide a better experience.
</p>
<p>
If you face any issues, want to report a bug, or have ideas for new features,
feel free to contact us anytime.
</p>
<p>
<strong>Email:</strong>
<a href="mailto:support@example.com">support@example.com</a>
</p>
<p>
We usually reply as soon as possible. Thank you for visiting our website.
</p>
<footer>
© 2026 Pro File Tools. All rights reserved.
</footer>
</body>
</html>