forked from ANSHIKA-26/WordWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
630 lines (554 loc) · 27.9 KB
/
about.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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WordWise</title>
<link rel="shortcut icon" type="image/x-icon" href="/images/favi.png" />
<!--font awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--swiper slider css-->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<!--css-->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="about.css">
<style>
/* CSS for uniform image layout */
.grid {
display: flex;
flex-wrap: wrap;
/* Allows items to wrap onto the next line */
gap: 30px;
/* Space between grid items */
}
.grid-item {
flex: 1 1 calc(33.33% - 20px);
/* 3 items per row */
max-width: calc(33.33% - 20px);
/* Ensures grid items do not exceed container */
box-sizing: border-box;
/* Includes padding in width calculations */
}
.card {
border-radius: 8px;
/* Optional: rounded corners */
overflow: hidden;
/* Hides overflow for better aesthetics */
}
.overflow-img img {
width: 100%;
height: 250px;
/* Set a fixed height */
object-fit: cover;
/* Cover to maintain aspect ratio */
}
.text-title {
font-size: 1.25rem;
/* Adjust size as needed */
}
.secondary-title {
font-size: 0.875rem;
/* Adjust size as needed */
}
</style>
<script>
function toggleMenu() {
const menu = document.getElementById('nav-menu');
menu.classList.toggle('active');
}
</script>
<!--favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="../images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../images/favicon-16x16.png">
<link rel="manifest" href="../images/site.webmanifest">
<link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="Scroll_and_progressbar.css">
</head>
<body>
<div class="progress-container">
<div class="progress-bar" id="progress-bar"></div>
</div>
<!-- Navigation Bar -->
<div class="layout-container" style="margin-bottom: 4rem;">
<header>
<div class="logo">
<a href="index.html">
<h2>WordWise</h2>
</a>
</div>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-links1">
<a href="index.html">Home</a>
<a href="blog.html">Leading Blog</a>
<a href="start_writing.html">Start Writing</a>
<a href="category.html">Categories</a>
<a href="about.html">About</a>
<a href="contact_us.html">Contact Us</a>
<a href="contact_us.html">Give Feedback</a>
</div>
<div class="dropdown">
<!-- Profile Icon -->
<a href="#" class="profile-icon" id="profileDropdown" onclick="toggleDropdown()">
<i class="fas fa-user-circle"></i>
</a>
<!-- Dropdown Menu -->
<ul class="dropdown-menu" id="dropdownMenu">
<li><a href="#login" onclick="openForm('login')">Login</a></li>
<li><a href="#signup" onclick="openForm('signup')">Signup</a></li>
</ul>
</div>
<!-- Login Form -->
<div class="form-popup" id="loginForm">
<form class="form-container" onsubmit="return validateLoginForm()"
style="max-width: 400px; margin: auto;">
<span class="close-icon" onclick="closeForm('login')">×</span>
<h2 class="text-center">Login</h2>
<div class="form-group">
<label for="loginEmail"><b>Email</b></label>
<input type="email" class="form-control" id="loginEmail" placeholder="Enter Email" name="email"
required>
</div>
<div class="form-group position-relative">
<label for="loginPsw"><b>Password</b></label>
<input type="password" class="form-control" id="loginPsw" placeholder="Enter Password"
name="psw" required minlength="6">
<i class="bi bi-eye eye-icon" id="toggleLoginPassword"
onclick="togglePasswordVisibility('loginPsw', 'toggleLoginPassword')"></i>
</div>
<div class="forgot">
<a href="javascript:void(0);" onclick="openForgotPassword()">Forgot Password?</a>
</div>
<button type="submit" class="btn btn-primary w-100 mb-3">LOGIN</button>
<!-- Google Sign-In Button -->
<button type="button" class="btn google-btn" onclick="handleGoogleLogin()">
<img src="./assets/google_icon.jpg" alt="Google Logo" class="google-logo">
Sign in with Google
</button>
</form>
</div>
<!-- Signup Form -->
<div class="form-popup" id="signupForm">
<form class="form-container" onsubmit="return validateSignupForm()"
style="max-width: 400px; margin: auto;">
<span class="close-icon" onclick="closeForm('signup')">×</span>
<h2 class="text-center">Signup</h2>
<div class="form-group">
<label for="name"><b>Full Name</b></label>
<input type="text" class="form-control" id="name" placeholder="Enter Full Name" name="name"
required>
</div>
<div class="form-group">
<label for="signupEmail"><b>Email</b></label>
<input type="email" class="form-control" id="signupEmail" placeholder="Enter Email" name="email"
required>
</div>
<div class="form-group position-relative">
<label for="signupPsw"><b>Password</b></label>
<input type="password" id="signupPsw" placeholder="Enter Password" name="psw" required
minlength="6" oninput="checkPasswordStrength()">
<i class="bi bi-eye eye-icon" id="toggleSignupPassword"
onclick="togglePasswordVisibility('signupPsw', 'toggleSignupPassword')"></i>
<div id="passwordStrength" class="strength-meter"></div>
</div>
<div class="form-group position-relative">
<label for="confirmPsw"><b>Confirm Password</b></label>
<input type="password" class="form-control" id="confirmPsw" placeholder="Confirm Password"
name="confirmPsw" required minlength="6">
<i class="bi bi-eye eye-icon" id="toggleConfirmPassword"
onclick="togglePasswordVisibility('confirmPsw', 'toggleConfirmPassword')"></i>
</div>
<button type="submit" class="btn btn-primary w-100 mb-3">SIGNUP</button>
<!-- Google Sign-In Button -->
<button type="button" class="btn google-btn" onclick="handleGoogleLogin()">
<img src="./assets/google_icon.jpg" alt="Google Logo" class="google-logo">
Sign in with Google</button>
</form>
</div>
<!-- Forgot Password Modal -->
<div id="forgot-password-modal" class="modal">
<div class="form-container modal-content">
<h2>Forgot Password</h2>
<p>Please enter your email address to reset your password.</p>
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="Enter your email" required />
<button class="btn" onclick="submitForgotPassword()">Submit</button>
<button class="btn cancel" onclick="closeForgotPasswordModal()">Cancel</button>
</div>
</div>
<!-- Toggle Password Visibility Script -->
<script>
function togglePasswordVisibility(passwordFieldId, iconId) {
const passwordField = document.getElementById(passwordFieldId);
const togglePassword = document.getElementById(iconId);
if (passwordField.type === 'password') {
passwordField.type = 'text';
togglePassword.classList.remove('bi-eye');
togglePassword.classList.add('bi-eye-slash');
} else {
passwordField.type = 'password';
togglePassword.classList.remove('bi-eye-slash');
togglePassword.classList.add('bi-eye');
}
}
</script>
<!-- Updated CSS Styles -->
<style>
.form-popup {
display: none;
position: fixed;
z-index: 9;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100%;
max-width: 500px;
padding: 20px;
background-color: white;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
border-radius: 10px;
box-sizing: border-box;
}
.form-container h2 {
margin-bottom: 20px;
color: #333;
}
.form-group {
margin-bottom: 15px;
}
.form-control {
border-radius: 5px;
padding: 12px;
font-size: 16px;
line-height: 1.5;
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
width: 100%;
}
.forgot {
text-align: right;
margin-left: 50px;
font-size: 10px;
margin-top: -40px;
}
.btn {
margin-top: 10px;
border-radius: 5px;
}
.eye-icon {
position: absolute;
right: 15px;
top: 38px;
cursor: pointer;
color: #007bff;
}
.close-icon {
font-size: 24px;
cursor: pointer;
float: right;
}
.position-relative {
position: relative;
}
/* Login button jumping issue fix */
.btn-primary {
transition: all 0.3s ease;
/* Smooth transition */
}
.btn-primary:hover {
background-color: #0056b3;
}
.google-btn {
display: flex;
align-items: center;
justify-content: center;
}
.google-logo {
width: 20px;
height: 20px;
margin-right: 10px;
}
.btn-primary:hover {
background-color: #0056b3;
}
</style>
<!-- Toggle Password Visibility Script -->
<script>
function togglePasswordVisibility(passwordFieldId, iconId) {
const passwordField = document.getElementById(passwordFieldId);
const togglePassword = document.getElementById(iconId);
if (passwordField.type === 'password') {
passwordField.type = 'text';
togglePassword.classList.remove('bi-eye');
togglePassword.classList.add('bi-eye-slash');
} else {
passwordField.type = 'password';
togglePassword.classList.remove('bi-eye-slash');
togglePassword.classList.add('bi-eye');
}
}
function checkPasswordStrength() {
var strengthMeter = document.getElementById('passwordStrength');
var password = document.getElementById('signupPsw').value;
var strength = 0;
if (password.length >= 6) strength++;
if (password.match(/[a-z]+/)) strength++;
if (password.match(/[A-Z]+/)) strength++;
if (password.match(/[0-9]+/)) strength++;
if (password.match(/[\W]+/)) strength++;
switch (strength) {
case 0:
case 1:
strengthMeter.style.width = '20%';
strengthMeter.style.backgroundColor = 'red';
strengthMeter.textContent = 'Weak';
break;
case 2:
strengthMeter.style.width = '40%';
strengthMeter.style.backgroundColor = 'orange';
strengthMeter.textContent = 'Fair';
break;
case 3:
strengthMeter.style.width = '60%';
strengthMeter.style.backgroundColor = 'yellow';
strengthMeter.textContent = 'Good';
break;
case 4:
strengthMeter.style.width = '80%';
strengthMeter.style.backgroundColor = 'blue';
strengthMeter.textContent = 'Strong';
break;
case 5:
strengthMeter.style.width = '100%';
strengthMeter.style.backgroundColor = 'green';
strengthMeter.textContent = 'Very Strong';
break;
}
}
</script>
<script src="signup.js"></script> <!-- Link to your JavaScript file -->
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="slider">
<img src="https://img.icons8.com/emoji/48/000000/sun-emoji.png" alt="Sun" class="icon sun-icon">
<img src="https://img.icons8.com/emoji/48/000000/crescent-moon-emoji.png" alt="Moon"
class="icon moon-icon">
</div>
</label>
<span id="mode-label"></span>
</div>
</header>
</div>
<!--main-->
</main>
<!--mainn-->
<div class="about">
<div class="about-content">
<h1>About Us</h1>
<p>WordWise is a responsive, user-friendly blogging platform designed to enrich vocabulary and engage
readers with insightful articles.<br>Built using HTML, CSS, and JavaScript, the website offers an
enjoyable experience with an interactive interface. <br>Whether you're here to read blogs or explore
topics, WordWise is for everyone.</p>
<h2>Key Features</h2>
<p> <strong><u>Responsive Design</u></strong><br>
Thoughtful layout with sections like Home, Leading Blogs, About, and Contact Us for a dedicated
navigation experience.<br>
<strong><u>Blog Functionality</u></strong><br>
Category exploration for easier navigation through organized blogs.
User Interface designed with appealing graphics to engage viewers.<br>
<strong><u>User Engagement</u></strong><br>Readers can share their thoughts and feedback directly on the
Contact Us page.
</p>
<h2>Technologies Used</h2>
<p><strong><u>HTML (HyperText Markup Language)</u></strong><br>
Provides structure to the website, organizing content into various elements such as headings,
paragraphs, buttons, and images.<br>
<strong><u>CSS (Cascading Style Sheets)</u></strong><br>
Responsible for the aesthetics, enhancing visual appeal, and ensuring responsiveness across all
devices.<br>
<strong><u>JavaScript</u></strong><br>
Adds interactivity and dynamic features, enriching user engagement through blog navigation, comment
sections, and form validations.
</p>
<div class="contributors">
<h2>Our Contributors</h2>
<p>We would like to thank all our contributors for their continuous efforts and valuable contributions.</p>
<div class="github-graph">
<!-- Replace 'username' with the actual GitHub username or repository graph URL -->
<iframe src="https://contrib.rocks/image?repo=say-het/WordWise" frameborder="0" scrolling="no" width="100%" height="200"></iframe>
</div>
</div>
</div>
</div>
<!-- footer -->
<footer id="footer">
<div class="footer-container">
<div class="row mb-3 col-3-main">
<div class="col-3">
<div id="about-us">
<h2 class="footer-title secondary-title">About Us</h2>
<div class="secondary-title">
<p class="mt-2 ">
We are a close-knit team of passionate storytellers dedicated to sharing captivating
content with the world.
</p>
<address style="margin-bottom: 0;">
<i class="fas fa-map-marker-alt"></i>
5 South Main Street Los Angeles, ZZ-9611 USA
</address>
<div class="phone">
<i class="fas fa-mobile text-primary"></i>
125-896-485
</div>
<div class="email">
<a href="mailto: [email protected]" style="color: 3B3B58;"><i
class="fas fa-envelope text-primary"></i>
<span>[email protected]</span>
</a>
</div>
<div> <a href="privacy.html" style="color: #520be1e7;">Privacy Policy</a> </div>
<div>
<img src="https://hits.sh/anshika-26.github.io/WordWise.svg?label=Website%20Views&extraCount=1515&color=30322f&labelColor=F5B3B5"
alt="Web views" style="height: 20px;width: 150px;margin-top: 40px;">
</div>
</div>
</div>
</div>
<div class="col-3">
<h2 class="footer-title secondary-title">Feature Post</h2>
<div class="feature-post">
<div class="flex-item">
<article class="article">
<div class="d-flex ">
<a class="d-flex" href="#">
<img src="./assets/img9.jpg" class="object-fit" alt="">
<div class="px-1" style="width: 300px;">
<a href="#" class="text-title display-2 text-dark">
Embrace the beauty of nature through our enchanting blog, where we
celebrate the wonders of the natural world
</a>
<p class="secondary-title display-3" style="margin-top:3px;">
<span><i class="far fa-clock text-primary"></i> Wed 02, 2022 </span>
</p>
</div>
</a>
</div>
</article>
</div>
<div class="flex-item">
<article class="article">
<div class="d-flex">
<a class="d-flex" href="#">
<img src="./assets/img1.jpg" class="object-fit" alt="">
<div class="px-1" style="width: 300px;">
<a href="#" class="text-title display-2 text-dark">
Embark on unforgettable journeys through our travel blog, where
wanderlust meets inspiration
</a>
<p class="secondary-title display-3" style="margin-top:3px;">
<span><i class="far fa-clock text-primary"></i> Wed 05, 2020 </span>
</p>
</div>
</a>
</div>
</article>
</div>
<div class="flex-item">
<article class="article">
<div class="d-flex">
<a class="d-flex" href="#">
<img src="./assets/img2.jpg" class="object-fit" alt="">
<div class="px-1" style="width: 300px;">
<a href="#" class="text-title display-2 text-dark">
Gaming Adventures Unleashed
</a>
<p class="secondary-title display-3" style="margin-top:3px;">
<span><i class="far fa-clock text-primary"></i> Wed 02, 2021 </span>
</p>
</div>
</a>
</div>
</article>
</div>
</div>
</div>
<div class="col-3">
<h2 class="footer-title secondary-title">Popular Tags</h2>
<div class="tags">
<div class="d-flex-gap flex-wrap">
<a href="#" class="nav-link btn bg-light">Travel</a>
<a href="#" class="nav-link btn bg-light">Food</a>
<a href="#" class="nav-link btn bg-light">Lifestyle</a>
<a href="#" class="nav-link btn bg-light">Techonogy</a>
<a href="#" class="nav-link btn bg-light">Fashion</a>
</div>
</div>
<h2 class="footer-title secondary-title mt-2">Connect with us</h2>
<div class="tags social" id="contact">
<div class="d-flex-gap flex-wrap">
<a href="https://www.facebook.com/" class="nav-link btn bg-light"><i
class="fab fa-facebook-f"></i></a>
<a href="https://x.com/" class="nav-link btn bg-light"><i
class="fa-brands fa-x-twitter"></i></a>
<a href="https://www.instagram.com/" class="nav-link btn bg-light"><i
class="fab fa-instagram"></i></a>
<a href="https://dribbble.com/" class="nav-link btn bg-light"><i
class="fab fa-dribbble"></i></a>
<a href="https://github.com/ANSHIKA-26?tab=overview&from=2022-12-01&to=2022-12-31"
target="_blank" class="nav-link btn bg-light"><i class="fa-brands fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- the authentication copyright -->
<div class="wordwise-footer">
<div class="wordwise-footer-content">
<p>© <span id="current-year"></span> WordWise. All rights reserved.</p>
</div>
</div>
</footer>
<!-- .footer -->
<!-- this script is for twitter icon starts -->
<script src="https://kit.fontawesome.com/856f4a44d7.js" crossorigin="anonymous"></script>
<!-- this script is for twitter icon ends -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<script src="main.js"></script>
<script src="./backend/login-Auth/login.js"></script>
<script src="./backend/signup-Auth/signup.js"></script>
<script src="SignIn_SignUp.js"></script>
<script src="darkMode.js"></script>
<!-- this script is to display the year in the copyright authentication in the footer -->
<script>
document.getElementById('current-year').textContent = new Date().getFullYear();
</script>
<!-- Share Modal -->
<div id="share-modal">
<div class="modal-content">
<h4>Share this post:</h4>
<a href="#" id="share-facebook">Facebook</a>
<a href="#" id="share-twitter">Twitter</a>
<a href="#" id="share-linkedin">LinkedIn</a>
<a href="#" id="share-pinterest">Pinterest</a>
<span class="close-modal" id="close-modal">Close</span>
</div>
</div>
<script src="share.js"></script>
</div>
</section>
<script src="share.js"></script>
<script src="main.js"></script>
<script src="darkMode.js"></script>
<script src="progress_bar.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="profiledropdown.js"></script>
</body>
</html>