forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
141 lines (116 loc) · 4.21 KB
/
contact.html
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" />
<link rel="icon" href="ml-fusion-lab-logo.png" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us - ML Fusion Labs</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="scroll.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
footer {
background: #333;
color: white;
text-align: center;
padding: 20px 0;
margin-top: auto;
}
.footer-container {
font-family: Arial, sans-serif;
max-width: 800px;
margin: auto;
padding: 0 20px;
}
.footer-links,
.footer-socials {
margin: 10px 0;
}
.footer-links a,
.footer-socials a {
color: white;
text-decoration: none;
margin: 0 10px;
transition: color 0.3s;
}
.footer-links a:hover,
.footer-socials a:hover {
color: #007BFF;
}
.footer-contact {
margin: 10px 0;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<h1><img src="ml fusion lab log.jpg" alt="logo" width="100" height="100" /></h1>
</div>
<div class="hamburger" id="hamburger">☰</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="theme-switch" id="theme-switch"></div>
</ul>
</nav>
</header>
<section class="about-us" style="
background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.76)), url('assets/contact-us-communication-support-service-assistance-concept.jpg') center/cover;
background-size: cover;
background-position: center;
padding: 100px 20px;
text-align: center;
position: relative;
">
<div class="aboutus-content">
<h2 style="color: white; font-size: 2.5rem;">Contact ML Fusion Labs</h2>
<p style="color: white; font-size: 1.5rem;">Have Questions or Feedback? We'd love to hear from you...</p>
</div>
</section>
<section class="contact-us">
<div class="container">
<h2>Get in Touch</h2>
<form action="https://api.web3forms.com/submit" method="POST" class="contact-form">
<input type="hidden" name="access_key" value="949b4eab-9721-4360-a138-aedf908e1975" />
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your Name" required />
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your Email" required />
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit" class="btn" id="alertbutton">Send Message</button>
</form>
</div>
</section>
<footer>
<div class="footer-container">
<p>© 2024 ML Fusion Labs | All Rights Reserved</p>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a> |
<a href="terms.html">Terms of Service</a> |
<a href="about.html">About Us</a> |
<a href="contact.html">Contact</a>
</div>
<div class="footer-socials">
Follow us on:
<a href="https://facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="footer-contact">
<p>Contact us: <a href="mailto:[email protected]" style="color: white;">[email protected]</a> | Phone:
+1 (555) 123-4567</p>
</div>
</div>
</footer>
<button id="scrollTopBtn" onclick="scrollToTop()">⇧</button>
<script src="scroll.js"></script>
<script src="script.js"></script>
</body>
</html>