-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
148 lines (129 loc) · 5.62 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Multipahe Education Website Using HTML, CSS & JavaSCript</title>
<!-- ICONSCOUT CDN-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<!-- GOOGLE FONT (MONTSERRAT) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/contact.css">
</head>
<body>
<nav>
<div class="container nav__container">
<a href="index.html"><h4>EDUTOR</h4></a>
<ul class="nav__menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button id="open-menu-btn"><i class="uil uil-bars"></i></button>
<button id="close-menu-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<!-- =======================END OF NAVBAR========================-->
<section class="contact">
<div class="container contact__container">
<aside class="contact__aside">
<div class="aside__image">
<img src="./images/contact.svg" >
</div>
<h2>Contact Us</h2>
<p>
Reach out for inquiries, support, and collaboration. We're here to assist.
</p>
<ul class="contact__details">
<li>
<i class="uil uil-phone-times">
<h5>+120 202 4321</h5>
</i>
</li>
<li>
<i class="uil uil-envelope">
<h5>[email protected]</h5>
</i>
</li>
<li>
<i class="uil uil-location-point">
<h5>Noida, India</h5>
</i>
</li>
</ul>
<ul class="contact__socials">
<li><a href="https://facebook.com"><i class="uil uil-facebook"></i></a></li>
<li><a href="https://instagram.com"><i class="uil uil-instagram"></i></a></li>
<li><a href="https://twitter.com"><i class="uil uil-twitter"></i></a></li>
<li><a href="https://linkedin.com"><i class="uil uil-linkedin"></i></a></li>
</ul>
</aside>
<form action="https://formspree.io/f/meqyjjao" method="POST" class="contact__form" >
<div class="form__name">
<input type="text" name="First Name" placeholder="First Name" required>
<input type="text" name="Last Name" placeholder="Last Name" required>
</div>
<input type="email" name="Email Address" placeholder="Your Email Address" required>
<textarea name="Message" rows="7" placeholder="Message" required></textarea>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</section>
<footer>
<div class="container footer__container">
<div class="footer__1">
<a href="index.html" class="footer__logo"><h4>EDUTOR</h4></a>
<p>
Empowering learners with innovative tools, personalized courses, and expert guidance for academic excellence.
</p>
</div>
<div class="footer__2">
<h4>Permalinks</h4>
<ul class="permalinks">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer__3">
<h4>Privacy</h4>
<ul class="privacy">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms and Conditions</a></li>
<li><a href="#">Refund Policy</a></li>
</ul>
</div>
<div class="footer__4">
<h4>Contact Us</h4>
<div>
<p>+120 202 4321</p>
<p>[email protected]</p>
</div>
<ul class="footer__socials">
<li>
<a href="#"><i class="uil uil-facebook-f"></i></a>
</li>
<li>
<a href="#"><i class="uil uil-instagram-alt"></i></a>
</li>
<li>
<a href="#"><i class="uil uil-twitter"></i></a>
</li>
<li>
<a href="#"><i class="uil uil-linkedin-alt"></i></a>
</li>
</ul>
</div>
</div>
<div class="footer__copyright">
<small>Copyright © EDUTOR</small>
</div>
</footer>
<script src="./main.js"></script>
</body>
</html>