-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
84 lines (81 loc) · 3.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Generic Website</title>
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="images/logo.png" alt=""></a>
<div class="nav-links" id="nav-links">
<i class="fa fa-times" id="times"></i>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="course.html">Course</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<i class="fa fa-bars" id="bars"></i>
</nav>
<h1>Contact Us</h1>
</section>
<section class="location">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12084.508388741287!2d-73.9665138!3d40.7812199!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb9df1f7387a94119!2z4KS44KWH4KSC4KSf4KWN4KSw4KSyIOCkquCkvuCksOCljeCklQ!5e0!3m2!1shi!2sin!4v1658221719103!5m2!1shi!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<section class="contact-us">
<div class="row">
<div class="contact-col">
<div>
<i class="fa fa-home"></i>
<span>
<h5>Central Park, NY</h5>
<p>Address Line 2</p>
</span>
</div>
<div>
<i class="fa fa-phone"></i>
<span>
<h5>+1 12345 12345</h5>
<p>Monday - Friday : 10AM - 6PM IST</p>
</span>
</div>
<div>
<i class="fa fa-envelope"></i>
<span>
<h5>[email protected]</h5>
<p>Email us now</p>
</span>
</div>
</div>
<div class="contact-col">
<form accept="formhandler.php" method="post">
<input type="text" name="name" placeholder="Enter Name" required>
<input type="email" name="email" placeholder="Enter Email" required>
<input type="text" name="subject" placeholder="Enter Subject" required>
<textarea rows="8" name="message" placeholder="Enter Your Message" required></textarea>
<button type="submit" class="hero-btn red-btn">Send Message</button>
</form>
</div>
</div>
</section>
<section class="footer">
<h4>About Us</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem dolore minus suscipit maxime maiores,<br>magni quaerat impedit incidunt sed repellat architecto, doloremque qui.</p>
<div class="icons">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-linkedin"></i>
</div>
<p>Made with <i class="fa fa-heart"></i> by BuildIT</p>
</section>
</body>
<script src="script.js"></script>
</html>