-
Notifications
You must be signed in to change notification settings - Fork 2
/
contactus.html
96 lines (91 loc) · 4.01 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
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="ConnectUp">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Reet Khare">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ConnectUp</title>
<link rel="stylesheet" href="./CSS/style.css">
<script src="https://kit.fontawesome.com/d652b9f554.js" crossorigin="anonymous"></script>
<!-- <link rel="shortcut icon" type="image/jpg" href="./Images/favicon.png">-->
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="./Images/logo1.png" alt="Eduford Logo"></a>
<div class="nav-links" id="navLinks">
<i class="fas fa-times" onclick="hideMenu()"></i>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="aboutus.html">About Us</a>
</li>
<li>
<a href="signin.html">Sign In</a>
</li>
<li>
<a href="faqs.html">FAQs</a>
</li>
<li>
<a href="contactus.html">Contact Us</a>
</li>
</ul>
</div>
<i class="fas fa-bars" onclick="showMenu()"></i>
</nav>
<h1>Contact Us</h1>
</section>
<!-----------------------------------------------------------Contact Us Content-------------------------------------------------------------->
<section class="location">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3784.576189448641!2d73.8508336!3d18.457542099999998!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2eac85230ba47%3A0x871eddd0a8a0a108!2sSCTR'S%20Pune%20Institute%20of%20Computer%20Technology!5e0!3m2!1sen!2sin!4v1644857888351!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="fast"></iframe>
</section>
<section class="contact-us">
<div class="row">
<div class="contact-col">
<div>
<i class="fa fa-home"></i>
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum ab facilis</span>
</div>
<div>
<i class="fa fa-phone"></i>
<span>
<h5>+91 1234567890</h5>
</span>
</div>
<div>
<i class="fa fa-envelope-o"></i>
<span><h5>[email protected]</h5></span>
</div>
</div>
<div class="contact-col">
<form action="">
<input type="text" placeholder="Name " required>
<input type="email" placeholder="Email Address " required>
<input type="tel" placeholder="Phone Number " required>
<textarea rows="8" placeholder="How may we help you?"></textarea>
<button type="submit" class="hero-btn blue-btn">Send Message</button>
</form>
</div>
</div>
</section>
<!-----------------------------------------------------------------Footer-------------------------------------------------------------------->
<section class="footer">
<hr>
<h4>About Us</h4>
<p>As the leading professional network for startups with the ultimate goal of fostering self-employment, we aim to be the most reliable, efficient, trustworthy yet simplistic platform for networking.</p>
<div class="icons">
<i class="fa fa-facebook"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-linkedin"></i>
</div>
<hr>
</section>
<script src="./JS/script.js"></script>
</body>
</html>