-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
125 lines (118 loc) · 5.38 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
<!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">
<title>Contact Us - StudyNest</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/all.min.css">
<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;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
</head>
<body>
<nav>
<div class="container nav_container">
<a href="index.html">
<h4>StudyNest</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="fa-solid fa-bars"></i></button>
<button id="close-menu-btn"><i class="fa-solid fa-xmark"></i></button>
</div>
</nav>
<section class="contact">
<div class="container contact__container">
<aside class="contact__aside">
<div class="aside__image">
<img src="./images/contact.svg" alt="Contact Us">
</div>
<h2>Contact Us</h2>
<p>We'd love to hear from you! Reach out with any questions or feedback, and we'll get back to you as soon as possible.</p>
<ul class="contact__details">
<li>
<i class="fa-solid fa-phone"></i>
<h5>+1234567890</h5>
</li>
<li>
<i class="fa-regular fa-envelope"></i>
<h5>[email protected]</h5>
</li>
<li>
<i class="fa-solid fa-location-dot"></i>
<h5>123 StudyLane, Learning City, Education</h5>
</li>
</ul>
<ul class="contact__socials">
<li><a href="#"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="#"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="#"><i class="fa-brands fa-github"></i></a></li>
<li><a href="#"><i class="fa-brands fa-twitter"></i></a></li>
</ul>
</aside>
<form action="#" class="contact__form">
<div class="form__name">
<input type="text" name="firstName" placeholder="First Name" required>
<input type="text" name="lastName" placeholder="Last Name" required>
</div>
<input type="email" name="email" 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 class="footer">
<div class="container footer__container">
<div class="footer__1">
<a href="index.html" class="footer__logo">
<h4>StudyNest</h4>
</a>
<p>Providing exceptional educational resources and support to help you succeed in your learning journey.</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>+1234567890</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<ul class="footer__socials">
<li><a href="#"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="#"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="#"><i class="fa-brands fa-github"></i></a></li>
<li><a href="#"><i class="fa-brands fa-twitter"></i></a></li>
</ul>
</div>
</div>
<div class="footer__copyright">
<small>© 2022 StudyNest. All rights reserved.</small>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>