-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
329 lines (216 loc) · 7.79 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page</title>
<!-- Icon for dropdown_menu link-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- jquery link -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<!-- fonts links -->
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="home1.css">
<link rel="stylesheet" href="contact.css">
<!-- <script src="contact.js"></script> -->
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<a href="#">Travel Blog</a>
</div>
<ul class="link">
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="blogs1.html">Blogs</a>
</li>
<li>
<a href="aboutme.html">About me</a>
</li>
<li>
<a href="contact.html">Contact us</a>
</li>
</ul>
<a href="#" class="action_btn">Subscribe</a>
<div class="toggle_btn">
<i class = "fa-solid fa-bars"></i>
<!-- <i> is icon tag -->
</div>
</div>
<div class="dropdown_menu">
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="aboutme.html">About me</a>
</li>
<li>
<a href="blogs1.html">Blogs</a>
</li>
<li>
<a href="contact.html">Contact us</a>
</li>
<li>
<a href="#" class="action_btn">Subscribe</a>
</li>
</div>
</header>
<div class = "set">
<div>
<h1 class="contactk">
Contact Kushal
</h1>
<p class="underlineheader1">__________________________</p>
<h4 class = "contactme1">
Please keep in mind that I receive hundreds of emails each week and
</h4>
<h4 class = "contactme">
am often traveling in areas with poor internet.
</h4>
<h4 class = "contactme">
I no longer have time to respond to every email personally.
</h4>
<h4 class = "contactme">
Please know that I read and appreciate all of them!
</h4>
<h4 class = "contactme">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Totam, perspiciatis.
</h4>
<h4 class = "contactme">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Totam, perspiciatis.
</h4>
<ol class = "list">
<li>
<h4 class = "listname">
1. I do not take guest posts.
</h4>
</li>
<li>
<h4 class = "listname">
2. I do not exchange links.
</h4>
</li>
<li>
<h4 class = "listname">
3. I do not contribute to academic studies or projects.
</h4>
</li>
</ol>
<h4 class = "contactme">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Totam, perspiciatis.
</h4>
<h4 class = "contactme">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Totam, perspiciatis.
</h4>
<h4 class = "listname1">
HEY, You can Subscribe to my Blog and never miss my post
</h4>
<h4 class = "listname1">
Click On Below Button...
</h4>
<!-- Trigger/Open The Modal -->
<button class="button-33" role="button" id="myBtn">
Subscribe
</button>
<!-- <button>Open Modal</button> -->
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2>Subscribe Form</h2>
</div>
<div class="modal-body">
<div class="center">
<h1>Hey Subscribe to my Blog Website</h1>
<form action="login">
<div class="inputbox">
<input type="text" required="required">
<span>Email</span>
</div>
<div class="inputbox">
<input type="text" required="required">
<span>Password</span>
</div>
<div class="inputbox">
<input type="button" value="Submit">
<!-- <button class="button-64" role="button" type="submit">
<span class="text">Submit</span>
</button> -->
</div>
</form>
</div>
</div>
</div>
</div>
</div> <!-- 1st of flex -->
<div>
<img src="kushal.jpeg" alt="Error" class="contactimg">
</div>
</div> <!-- Set div tag -->
<div class="footer">
<div class="contact">
<h1>Contact:</h1>
<p>
<img src="telephone.png" alt="Error" class="contacticon">+91-9901010101
</p>
<p>
<img src="email.png" alt="Error" class="contacticon">travelblog@gmail.com
</p>
</div>
<div class="connect">
<h1>Connect:</h1>
<p>
<img src="instagram.png" alt="Error" class="contacticon1" onclick="location.href='https://www.instagram.com'">
<img src="facebook.png" alt="Error" class="contacticon1" onclick="location.href='https://www.facebook.com'">
<img src="linkedin.png" alt="Error" class="contacticon1" onclick="location.href='https://www.linkedin.com'">
<img src="snapchat.png" alt="Error" class="contacticon1" onclick="location.href='https://www.snapchat.com'">
<img src="twitter (1).png" alt="Error" class="contacticon1" onclick="location.href='https://www.twitter.com'">
</p>
</div>
<div class="endfooter">
<h1>Travel Blog</h1>
<p>© All Rights Reserved</p>
</div>
</div>
<script>
const toggleBtn = document.querySelector(".toggle_btn")
const toggleBtnIcon = document.querySelector(".toggle_btn i")
const dropDownMenu = document.querySelector(".dropdown_menu")
toggleBtn.onclick = function() {
dropDownMenu.classList.toggle("open")
const isOpen = dropDownMenu.classList.contains("open")
toggleBtnIcon.classList = isOpen
? 'fa-solid fa-xmark'
: 'fa-solid fa-bars'
}
</script>
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function()
{
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</body>
</html>