-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontactus.html
94 lines (89 loc) · 3.79 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contact Us</title>
<meta name="description" content="Get in touch with us">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contactus.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<section class="contact-section">
<div class="contact-bg">
<h3>Get in Touch with Us</h3>
<h2>Contact Us</h2>
<div class="line">
<div></div>
<div></div>
<div></div>
</div>
<p class="contact-text">We’re here to help and answer any questions you might have. Reach out to us through any of the following methods.</p>
</div>
<div class="contact-body">
<div class="contact-info">
<div>
<span><i class="fas fa-mobile-alt"></i></span>
<span class="info-label">Phone No.</span>
<span class="info-text">961076XXXX</span>
</div>
<div>
<span><i class="fas fa-envelope-open"></i></span>
<span class="info-label">E-mail</span>
<span class="info-text">[email protected]</span>
</div>
<div>
<span><i class="fas fa-map-marker-alt"></i></span>
<span class="info-label">Address</span>
<span class="info-text">Ajeenkya DY Patil University, Pune</span>
</div>
<div>
<span><i class="fas fa-clock"></i></span>
<span class="info-label">Opening Hours</span>
<span class="info-text">Monday - Friday (9:00 AM to 5:00 PM)</span>
</div>
</div>
<div class="contact-form">
<form>
<div class="form-group">
<input type="text" class="form-control" placeholder="First Name" required>
<input type="text" class="form-control" placeholder="Last Name" required>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="E-mail" required>
<input type="text" class="form-control" placeholder="Phone" required>
</div>
<textarea rows="5" placeholder="Message" class="form-control" required></textarea>
<input type="submit" class="send-btn" value="Send Message">
</form>
</div>
</div>
<div class="map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d989.7223830657917!2d73.91187110704477!3d18.61989071111415!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e1!3m2!1sen!2sin!4v1733833666446!5m2!1sen!2sin"
width="100%"
height="450"
style="border:0;"
allowfullscreen
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
<div class="contact-footer">
<h3>Follow Us</h3>
<div class="social-links">
<a href="https://www.facebook.com/" class="fab fa-facebook-f" aria-label="Facebook"></a>
<a href="https://www.instagram.com/?hl=en" class="fab fa-instagram" aria-label="Instagram"></a>
<a href="https://www.linkedin.com/" class="fab fa-linkedin" aria-label="LinkedIn"></a>
<a href="https://www.youtube.com/" class="fab fa-youtube" aria-label="YouTube"></a>
</div>
</div>
</section>
</body>
</html>