-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
875 lines (664 loc) · 24 KB
/
about.html
File metadata and controls
875 lines (664 loc) · 24 KB
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
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
<!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">
<!--
- primary meta tags
-->
<title> AuscultaTech- home</title>
<meta name="title" content="AuscultaTech- home">
<meta name="description" content="">
<!--
- favicon
-->
<link rel="shortcut icon" href="./assets/images/logo.png" type="image/svg+xml">
<!--
- google font link
-->
<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=Oswald:wght@500;700&family=Rubik:wght@400;500;700&display=swap"
rel="stylesheet">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- preload images
-->
</head>
<body id="top">
<!--
- #PRELOADER
-->
<div class="preloaders" data-preloader>
<div class="circle"></div>
</div>
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" class="logo">
<img src="./assets/images/logo2.png" width="190" height="190" alt="AuscultaTechhome">
</a>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="#" class="logo">
<img src="./assets/images/logo2.png" width="136" height="136" alt="AuscultaTechhome">
</a>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<!-- Links visible after login -->
<li class="navbar-item logged-in">
<a href="index.html" class="navbar-link title-md">Home</a>
</li>
<li class="navbar-item logged-in">
<a href="about.html" class="navbar-link title-md">About</a>
</li>
<li class="navbar-item logged-in">
<a href="dashboard.html" class="navbar-link title-md">Dashboard</a>
</li>
<!-- Add login and logout buttons -->
<button id="logoutButton" style="display:none;" class="btn has-before title-md">Logout</button>
<!-- Links visible before login -->
<li class="navbar-item logged-out">
<a href="index.html" class="navbar-link title-md">Home</a>
</li>
<li class="navbar-item logged-out">
<a href="about.html" class="navbar-link title-md">About</a>
</li>
<li class="navbar-item logged-out">
<a href="login.html" class="navbar-link title-md">Login</a>
</li>
<script src="./assets/js/index.js"></script>
<li class="navbar-item logged-out">
<a href="signup.html" class="navbar-link title-md">Signup</a>
</li>
<li class="navbar-item logged-out">
<a href="signup.html" class="btn has-before title-md">Check your Health</a>
</li>
</ul>
<ul class="social-list">
<!-- Social Links -->
<li>
<a href="#" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-pinterest"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-youtube"></ion-icon>
</a>
</li>
</ul>
</nav>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline"></ion-icon>
</button>
<div class="overlay" data-nav-toggler data-overlay></div>
</div>
</header>
<main>
<article>
<!--
- #ABOUT
-->
<section class="section about" aria-labelledby="about-label" style="background-color: #7f6f53; color: #5a5858; padding-top: 100px;" id="about">
<div class="container">
<div class="about-content">
<!-- Center the About Us heading, make it bigger and bold -->
<p class="section-subtitle title-lg has-after" id="about-label" data-reveal="left" style="color: #dfab11; text-align: center; margin-bottom: 20px;">
About Us
</p>
<h2 class="headline-md" data-reveal="left" style="color: #efefef; text-align: center; font-size: 3rem; font-weight: bold; margin-bottom: 30px;">
Revolutionizing Respiratory Diagnostics
</h2>
<p class="section-text" data-reveal="left" style="text-align: center; color: #efefef;">
Our project focuses on the automatic detection and classification of respiratory diseases using advanced
deep learning techniques. By leveraging state-of-the-art methods, we aim to address the global health burden
posed by respiratory conditions like COPD and pneumonia, facilitating early diagnosis and timely
interventions.
</p>
<ul class="tab-list" data-reveal="left" style="text-align: center; color: #efefef;">
<li>
<button class="tab-btn active" style="background-color: #FFCC80; color: #4A4A4A;">Vision</button>
</li>
<li>
<button class="tab-btn" style="background-color: #FFE0B2; color: #4A4A4A;">Mission</button>
</li>
<li>
<button class="tab-btn" style="background-color: #FFECB3; color: #4A4A4A;">Strategy</button>
</li>
</ul>
<p class="tab-text" data-reveal="left" style="text-align: center; color: #efefef;">
To develop an efficient, automated diagnostic tool capable of accurately identifying respiratory diseases,
enhancing healthcare outcomes worldwide.
</p>
<div class="wrapper">
<ul class="about-list" style="text-align: center;">
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline" style="color: #dfab11; "></ion-icon>
<span class="span " style="color: #efefef;">Leveraging deep learning for enhanced accuracy</span>
</li>
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline" style="color: #dfab11; "></ion-icon>
<span class="span" style="color: #efefef;">Addressing global health challenges</span>
</li>
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline" style="color: #dfab11; "></ion-icon>
<span class="span" style="color: #efefef;">Promoting early detection and timely treatment</span>
</li>
<li class="about-item" data-reveal="left">
<ion-icon name="checkmark-circle-outline" style="color: #dfab11; "></ion-icon>
<span class="span" style="color: #efefef;">Developing robust and lightweight solutions</span>
</li>
</ul>
</div>
</div>
<figure class="about-banner" data-reveal="right" style="text-align: center;">
<img src="./assets/images/lungs.jpg" width="554" height="678" loading="lazy" alt="about banner"
class="w-100" style="border: 5px solid #FFCC80; border-radius: 10px; margin-bottom: 150px;">
</figure>
</div>
</section>
<!-- Add the following style for adjustments -->
<style>
/* Prevent overlap with the header */
.section .about-content {
padding-top: 100px; /* Adjusts the space from the top */
}
/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
.about-banner-img {
max-width: 90%; /* Reduces width on smaller devices */
margin-bottom: 50px; /* Adjusts margin for compact view */
}
}
@media screen and (max-width: 480px) {
.about-banner-img {
max-width: 100%; /* Allows it to take full width */
border-radius: 5px; /* Slightly less rounded corners */
margin-bottom: 30px; /* Adjusts spacing for very small screens */
}
}
</style>
<section class="section listing" aria-labelledby="listing-label">
<div class="container">
<ul class="grid-list horizontal">
<li>
<p class="section-subtitle title-lg" id="listing-label" data-reveal="left">Analysis Overview</p>
<h2 class="headline-md" data-reveal="left">Respiratory Condition Audio Analysis</h2>
</li>
<li>
<div class="card-icon">
<img src="./assets/images/1.png" width="250" height="250" loading="lazy" alt="Healthy Lung Waveform">
<div class="listing-card" data-reveal="bottom">
<div>
<h3 class="headline-sm card-title">Healthy Lung Sounds</h3>
<p class="card-text">
Smooth, periodic patterns indicating normal respiratory function.
</p>
</div>
</div>
</div>
</li>
<li>
<div class="card-icon">
<img src="./assets/images/2.png" width="250" height="250" loading="lazy" alt="Diseased Lung Waveform">
<div class="listing-card" data-reveal="bottom">
<div>
<h3 class="headline-sm card-title">Diseased Lung Sounds (e.g., COPD)</h3>
<p class="card-text">
Irregularities and fluctuations highlight abnormalities compared to healthy lungs.
</p>
</div>
</div>
</div>
</li>
<li>
<div class="card-icon">
<img src="./assets/images/3.png" width="300" height="300" loading="lazy" alt="Statistical Graph">
<div class="listing-card" data-reveal="bottom">
<div>
<h3 class="headline-sm card-title">Statistical Insights</h3>
<p class="card-text">
A boxplot/scatterplot visualizing key insights (e.g., respiratory duration differences).
</p>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<style>
/* General styling for horizontal layout */
.grid-list.horizontal {
display: flex;
justify-content: space-between;
gap: 2rem;
flex-wrap: nowrap;
align-items: flex-start; /* Ensures content is horizontally aligned */
}
.grid-list.horizontal li {
flex: 1; /* Ensures equal spacing for items */
text-align: center;
}
.listing-card {
background: #fff;
border-radius: 10px;
padding: 1.5rem; /* Increased padding for larger image appearance */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
text-align: center;
}
.card-icon img {
max-width: 90%; /* Makes images responsive while occupying more space */
height: auto;
margin: 0 auto; /* Centers the image */
}
.card-title {
font-size: 1.8rem;
margin-top: 1.5rem;
}
.card-text {
font-size: 1.4rem;
color: #555;
}
.section-subtitle, .headline-md {
text-align: center;
margin-bottom: 2rem;
}
/* Adjustments for responsiveness */
@media (max-width: 768px) {
.grid-list.horizontal {
flex-direction: column;
align-items: center;
}
.grid-list.horizontal li {
width: 80%;
margin-bottom: 2rem;
}
.card-icon img {
max-width: 100%;
}
}
</style>
<!--<section class="section blog" aria-labelledby="blog-label">
<div class="container">
<p class="section-subtitle title-lg text-center" id="blog-label" data-reveal="bottom">
UNDER MAINTAINENCE PLEASE DON;T TOUCH IT- MANAV RAI
</p>
<h2 class="section-title headline-md text-center" data-reveal="bottom"> UNDER MAINTAINENCE</h2>
<ul class="grid-list">
<li>
<div class="blog-card has-before has-after" data-reveal="bottom">
<div class="meta-wrapper">
<div class="card-meta">
<ion-icon name="person-outline"></ion-icon>
<span class="span">By Admin</span>
</div>
<div class="card-meta">
<ion-icon name="folder-outline"></ion-icon>
<span class="span">Specialist</span>
</div>
</div>
<h3 class="headline-sm card-title">Could intermittent fasting reduce breast cancer</h3>
<time class="title-sm date" datetime="2022-01-28">28 January, 2022</time>
<p class="card-text">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut
labore et dolore magna aliquyam erat
</p>
<a href="#" class="btn-text title-lg">Read More</a>
</div>
</li>
<li>
<div class="blog-card has-before has-after" data-reveal="bottom">
<div class="meta-wrapper">
<div class="card-meta">
<ion-icon name="person-outline"></ion-icon>
<span class="span">By Admin</span>
</div>
<div class="card-meta">
<ion-icon name="folder-outline"></ion-icon>
<span class="span">Specialist</span>
</div>
</div>
<h3 class="headline-sm card-title">Give children more autonomy during the pandemic</h3>
<time class="title-sm date" datetime="2022-01-28">28 January, 2022</time>
<p class="card-text">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut
labore et dolore magna aliquyam erat
</p>
<a href="#" class="btn-text title-lg">Read More</a>
</div>
</li>
<li>
<div class="blog-card has-before has-after" data-reveal="bottom">
<div class="meta-wrapper">
<div class="card-meta">
<ion-icon name="person-outline"></ion-icon>
<span class="span">By Admin</span>
</div>
<div class="card-meta">
<ion-icon name="folder-outline"></ion-icon>
<span class="span">Specialist</span>
</div>
</div>
<h3 class="headline-sm card-title">How do binge eating and drinking impact the liver?</h3>
<time class="title-sm date" datetime="2022-01-28">28 January, 2022</time>
<p class="card-text">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut
labore et dolore magna aliquyam erat
</p>
<a href="#" class="btn-text title-lg">Read More</a>
</div>
</li>
</ul>
</div>
</section>-->
<!-- Call to Action -->
<section class="cta">
<div class="container">
<h2 class="cta-heading" data-reveal="fade-up">Ready to Check Your Health?</h2>
<p class="cta-subtext" data-reveal="fade-up">Your health, your choice. Take the next step towards secure verification with fast, easy, and reliable results.</p>
<a href="signup.html" class="btn btn-primary cta-btn glow-btn" data-reveal="fade-up">
<i class="fas fa-user-plus"></i> Sign Up Now
</a>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer" style="background-image: url('./assets/images/footer-bg.png')">
<div class="container">
<div class="section footer-top">
<div class="footer-brand" data-reveal="bottom">
<a href="#" class="logo">
<img src="./assets/images/logo2.png" width="190" height="190" loading="lazy" alt="AuscultaTechhome">
</a>
<ul class="contact-list has-after">
<li class="contact-item">
<div class="item-icon">
<ion-icon name="mail-open-outline"></ion-icon>
</div>
<div>
<p>
Main Email : <a href="mailto:contact@AuscultaTech.com" class="contact-link">AuscultaTech.com</a>
</p>
<p>
Inquiries : <a href="mailto:Info@mail.com" class="contact-link">Info@AuscultaTech.com</a>
</p>
</div>
</li>
<li class="contact-item">
<div class="item-icon">
<ion-icon name="call-outline"></ion-icon>
</div>
<div>
<p>
Mobile : <a href="tel:000232439493" class="contact-link">+91 8054776034</a>
</p>
</div>
</li>
</ul>
</div>
<div class="footer-list" data-reveal="bottom">
<p class="headline-sm footer-list-title">About Us</p>
<p class="text">
We harness AI to revolutionize respiratory healthcare, enabling accurate and efficient detection of diseases like COPD and pneumonia through automated analysis of lung sounds. Our mission: better diagnostics, faster interventions, and improved patient outcomes.
</p>
<address class="address">
<ion-icon name="map-outline"></ion-icon>
<span class="text">
Punjab Engineering College, Sector-12 Chandigarh <br>
</span>
</address>
</div>
<ul class="footer-list" data-reveal="bottom">
<li>
<p class="headline-sm footer-list-title">Useful Links</p>
</li>
<li>
<a href="index.html" class="text footer-link">Home</a>
</li>
<li>
<a href="about.html" class="text footer-link">About Us</a>
</li>
<li>
<a href="login.html" class="text footer-link">Login</a>
</li>
<li>
<a href="signup.html" class="text footer-link">Sign Up</a>
</li>
</ul>
<div class="footer-list" data-reveal="bottom">
<p class="headline-sm footer-list-title">Subscribe</p>
<form action="" class="footer-form">
<input type="email" name="email" placeholder="Email" class="input-field title-lg">
<button type="submit" class="btn has-before title-md">Subscribe</button>
</form>
<p class="text">
Get the latest updates via email. Any time you may unsubscribe
</p>
</div>
</div>
<div class="footer-bottom">
<p class="text copyright">
© AuscultaTech2022 | All Rights Reserved by Manav Rai
</p>
<ul class="social-list">
<li>
<a href="#" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-google"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-pinterest"></ion-icon>
</a>
</li>
</ul>
</div>
</div>
</footer>
<style>
.footer {
background-size: cover;
background-color: rgb(0, 0, 0);
padding: 40px 20px;
color: #fff;
}
.footer-top {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
.footer-brand {
display: grid;
grid-template-columns: 1fr;
padding: 20px;
background-color: #3f3839;
text-align: center;
}
.footer .logo {
margin: 0 auto 20px;
}
.contact-list {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.contact-item {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
text-align: center;
}
.contact-link {
color: #e63946;
text-decoration: none;
}
.footer-list {
text-align: center;
}
.footer-list-title {
font-size: 1.5rem;
margin-bottom: 10px;
color: #e63946;
}
.footer-form {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-form .input-field {
width: 90%;
max-width: 300px;
padding: 10px;
margin-bottom: 10px;
}
.footer-form .btn {
padding: 10px 20px;
background-color: #e63946;
color: #fff;
border: none;
cursor: pointer;
}
.footer-bottom {
text-align: center;
padding: 20px 0;
border-top: 1px solid #555;
}
.social-list {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
}
.social-link {
color: #fff;
font-size: 1.8rem;
}
@media (min-width: 768px) {
.footer-top {
grid-template-columns: repeat(2, 1fr);
}
.footer-brand {
grid-column: span 2;
text-align: left;
}
.contact-list {
flex-direction: row;
justify-content: space-between;
}
.footer-list {
text-align: left;
}
.footer-form .input-field {
width: 70%;
}
}
@media (min-width: 1024px) {
.footer-top
{ grid-template-columns: repeat(4, 1fr); }
.footer-brand {
grid-column: 1 / 5;
padding: 28px 56px;
display: grid;
grid-template-columns: 0.3fr 1fr;
align-items: center;
background-color: #3f3839;
}
.footer-list-title {
font-size: 1.8rem;
}
.footer-form .input-field {
width: 100%;
}
.footer-form .btn {
padding: 12px 30px;
}
.social-list {
justify-content: flex-start;
}
}
.animated-icon {
display: block;
margin: 0 auto 20px;
width: 60px;
height: auto;
}
@media (min-width: 768px) {
.animated-icon {
width: 80px;
}
}
@media (min-width: 1024px) {
.animated-icon {
width: 100px;
}
}
</style>
<!--
- #BACK TO TOP
-->
<a href="#top" class="back-top-btn" aria-label="back to top" data-back-top-btn>
<ion-icon name="chevron-up"></ion-icon>
</a>
<style>
.back-top-btn {
background-color: #e63946;
}
</style>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<script src="./assets/js/index.js"></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>