-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
99 lines (80 loc) · 2.69 KB
/
Copy pathcontact.html
File metadata and controls
99 lines (80 loc) · 2.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<!-- font Awesome CDN link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<link rel="stylesheet" href="contact.css">
<!-- JQuery CDN link -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
</head>
<!-- Hero section starts from here -->
<section id="about-home">
<h2>
Contact Us
</h2>
</section>
<!-- Hero section ends from here -->
<section id="contact">
<div class="getin">
<h2>Get in touch</h2>
<p>Looking for help? Fill the form and solve your queries.</p>
<div class="getin-details">
<h3>Headquaters</h3>
<div>
<i class="fa-solid fa-map get"></i>
<p>Virgin Town, Ikishe Model Village, Chümoukedima, Nagaland, India - 797 115</p>
</div>
<h3>Phone</h3>
<div>
<i class="fas fa-phone-alt get"></i>
<p>(+91) 98671 23456 <br> (+91) 98671 23456</p>
</div>
<h3>Support</h3>
<div>
<i class="fa-solid fa-envelope get"></i>
<p>sju@educa.com <br> info@educa.com </p>
</div>
<h3>Follow Us</h3>
<div class="pro-links">
<i class="fab fa-facebook"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-linkedin-in"></i>
</div>
</div>
</div>
<div class="form">
<h4>Let's Connect</h4>
<p>Lorem ipsum, dolor sit amet consectetur.</p>
<div class="form-row">
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
</div>
<div class="form-col">
<input type="text" placeholder="Subject line...">
</div>
<div class="form-col">
<textarea name="" id="" cols="30" rows="8" placeholder="How can we help?"></textarea>
</div>
<div class="form-col">
<button>Send Message</button>
</div>
</div>
</section>
<section id="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d30711686.029386617!2d64.41853642919325!3d20.009139591170264!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30635ff06b92b791%3A0xd78c4fa1854213a6!2sIndia!5e0!3m2!1sen!2sin!4v1652012148253!5m2!1sen!2sin" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<script>
// Show menu links on burger click
$('#menu-btn').click(function(){
$('nav .navigation ul').addClass('active')
});
// Hide navbar on click function
$('#menu-close').click(function(){
$('nav .navigation ul').removeClass('active')
});
</script>
</body>
</html>