-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact us.html
More file actions
64 lines (55 loc) · 2.49 KB
/
contact us.html
File metadata and controls
64 lines (55 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Group Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/normlize.css">
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact Us</a>
</nav>
</header>
<div class="container">
<h2>Contact Information</h2>
<div class="contact-info">
<p><strong>Email Addresses:</strong></p>
<ul>
<li>General Inquiries: <a href="mailto:info@group.com">info@group.com</a></li>
<li>Support: <a href="mailto:support@group.com">support@group.com</a></li>
<li>Press: <a href="mailto:press@group.com">press@group.com</a></li>
</ul>
</div>
<div class="contact-form">
<h3>Get in Touch</h3>
<form action="submit_form.php" method="post">
<input type="text" name="full_name" placeholder="Full Name" required>
<input type="email" name="email" placeholder="Email Address" required>
<input type="tel" name="phone" placeholder="Phone Number (optional)">
<input type="text" name="subject" placeholder="Subject" required>
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
<div class="social-media">
<h3>Follow Us</h3>
<a href="https://facebook.com" target="_blank"><i class="fab fa-facebook-f"></i>Facebook</a>
<a href="https://twitter.com" target="_blank"><i class="fab fa-twitter"></i>Twitter</a>
<a href="https://instagram.com" target="_blank"><i class="fab fa-instagram"></i>Instagram</a>
<a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i>LinkedIn</a>
</div>
</div>
<footer>
<p>© 2024 All Rights Reserved</p>
</footer>
</body>
</html>