forked from NIKKU-29/Study_Buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconatcus.html
54 lines (51 loc) · 2.41 KB
/
conatcus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<section id="contact-us" class="section">
<div class="container flex">
<div class="fade-in contact-form">
<!-- Contact Form Content -->
<div class="contact-form">
<h3>Get in Touch</h3>
<form>
<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="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="submit-button">Send Message</button>
</form>
</div>
</div>
<!-- Left Column (Contact Information) -->
<!-- Right Column (Contact Form) -->
<div class="fade-in contact-info">
<!-- Contact Info Content -->
<div class="contact-info">
<h2>Contact Us</h2>
<p class="contact-description">
We’d love to hear from you! Reach out to us Contribute.Our team is here to assist you with practical experiments and hands-on applications tailored to electrical engineering students.
</p>
<ul class="contact-details">
<li><strong>Email:</strong></li>
<li><strong>Phone:</strong></li>
<li><strong>Address:</strong></li>
</ul>
</div>
</div>
</div>
</section>
</body>
</html>