-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
141 lines (124 loc) · 5.12 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
<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, user-scalable=no">
<title>Wealth Way</title>
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="css/all.css">
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/2da7e67395.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.toggle').click(function () {
$('ul').toggleClass('active');
$('#change').toggleClass('fa-times');
})
})
</script>
</head>
<body>
<section class="header">
<nav>
<a href="index.html" class="logo"><img src="logo.png" alt="logo"></a>
<a class="toggle"><i id="change" class="fas fa-bars"></i></a>
<ul class="">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<div class="page-name">
<h2>Contact Us</h2>
</div>
</section>
<section class="contact">
<div class="inquiry">
<h2>For any inquiries please email</h2>
<span class="contact-inquiry">
<span class="icons"><i aria-hidden="true" class="fas fa-map-marker-alt"></i></span>
<span class="text">Sector no. 42, M.R Road, Gorakhpur</span>
</span>
<span class="contact-inquiry">
<span class="icons"><i aria-hidden="true" class="fas fa-envelope"></i></span>
<span class="text">[email protected]</span>
</span>
<span class="contact-inquiry">
<span class="icons"><i aria-hidden="true" class="fas fa-clock"></i></span>
<span class="text">8:30 AM – 5:30 PM</span>
</span>
<span class="social-icons">
<a href="">
<span class="social-links"><i class="fab fa-facebook-f"></i></span>
</a>
<a href="">
<span class="social-links"><i class="fab fa-instagram"></i></span>
</a>
<a href="">
<span class="social-links"><i class="fab fa-twitter"></i></span>
</a>
</span>
</div>
<section class="form">
<div class="containerr">
<form action="https://formspree.io/f/xnqlwpka" method="POST" id="my-form">
<div class="form-group">
<label for="Name">Name</label>
<input type="text" id="Name" name="Name">
</div>
<div class="form-group">
<label for="Email">Email</label>
<input type="Email" id="Email" name="Email">
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="Subject" name="Subject">
</div>
<div class="form-group">
<label for="Message">Message</label>
<textarea name="message" id="message" cols="20" rows="10"></textarea>
</div>
<button type="submit">Sumbit</button>
<div class="success-box">
<div class="" id="status"></div>
</div>
</form>
</div>
</section>
</section>
<section class="footer">
<div class="footer-box a">
<span class="foot-heading ">Contact Us</span>
<span class="foot-content">
<p>Sector no.- 42, M.R Road, Gorakhpur 273013.</p>
<p> [email protected]</p>
</span>
</div>
<div class="footer-box b">
<span class="foot-heading ">About Us</span>
<span class="foot-content">
<p> <a href="about.html">About Us</a> </p>
<p> <a href="contact.html"> Contact Us</a></p>
</span>
</div>
<div class="footer-box c">
<span class="foot-heading ">Working Hours</span>
<span class="foot-content">
<p> Mon: 8.30 AM - 5.30 PM</p>
<p> Tue: 8.30 AM - 5.30 PM</p>
<p> Wed: 8.30 AM - 5.30 PM</p>
<p> Thu: 8.30 AM - 5.30 PM</p>
<p> Fri: 8.30 AM - 5.30 PM</p>
</span>
</section>
<hr id="line">
<div class="footer-line">
<span class="foot-line">Copyright © 2021 Wealth Way </span>
<span class="foot-line">| <a class="foot-content" id="foot-content"
href="https://apro-services.netlify.app/"> Apro_Services
</a> </span>
</div>
<script src="script.js"></script>
</body>
</html>