-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
116 lines (109 loc) · 4.1 KB
/
about.html
File metadata and controls
116 lines (109 loc) · 4.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>ABOUT - Madhav</title>
<link rel="stylesheet" href="style.css">
<style>
h2{
font-size: 1.5em;
}
.credits-ul,.project-ul{
list-style: none;
padding-left: 0;
}
.credits-ul>li:nth-child(2n-1){
font-weight: bold;
font-style: italic;
}
.credits-ul>li:nth-child(2n){
margin-bottom: 2em;
font-size: 1.2em;
}
.project-ul>li:nth-child(2n-1){
margin-top: 1.5em;
font-style: italic;
}
.header-ul{
display:none;
}
header{
background-image: url(./images/white_lines.png);
background-repeat:no-repeat;
margin-left: auto;
margin-right:50px;
cursor:pointer;
}
.sudarshan-img{
display: block;
z-index: -1;
position: absolute;
width: 500px;
transform: translate(-50%, -50%) rotate(0deg);
bottom: -500px;
left: 50%;
animation: rotate 10s infinite linear;
}
@keyframes rotate{
100%{
transform: translate(-50%, -50%) rotate(360deg);
}
}
</style>
</head>
<body>
<header>
<ul class="header-ul">
<li><a href="/">MADHAV</a></li>
<li><a href="analyze.html">ANALYZE</a></li>
<li><a href="music.html">MUSIC</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="game.html">GAME</a></li>
<li><a href="about.html">ABOUT US</a></li>
</ul>
</header>
<main style="flex-grow:1;overflow-y:hidden">
<article style="padding:20px;text-align:center">
<h1 style="font-size:2em">ABOUT</h1>
<p style="margin-bottom:3em;">Madhav is a voice assistant leveraging NLP, deep learning, ML to measure and address depression using wisdom from Shreemad Bhagavad Geeta.<p>
<ul class="project-ul">
<li>OUR MISSION</li>
<li>Providing accessible mental health support through technology and ancient wisdom.</li>
<li>TECHNOLOGY</li>
<li>NLP, Deep Learning, Full Stack Web-D, Graphic Designing</li>
<li>EXPERIENCE</li>
<li>Offering empathetic and personalized support for mental well-being.</li>
<li>WISDOM & SOLUTIONS</li>
<li>Integrating ancient wisdom with contemporary technology for holistic well-being.</li>
<li>COMMITMENTS</li>
<li>Ethical and responsible approach to addressing mental health challenges.</li>
</ul>
<p>This concise summary effectively communicates Madhav's purpose, technology expertise, and commitment to leveraging technology for mental health advocacy. If you have any further adjustments or additional details to include, feel free to share your preferences.</p>
<h2>THE TEAM</h2>
<ul class="credits-ul">
<li>ARTIFICIAL INTELLIGENCE | MACHINE LEARNING</li>
<li>ASHISH KUMAR</li>
<li>FRONT-END | GRAPHICS | BACKEND | GAME</li>
<li>ARYAYAN ROY</li>
<li>FRONT-END | BACK-END</li>
<li>ASHUTOSH KUMAR</li>
</ul>
</article>
<img src="sudarshan.webp" alt="Sudarshan Chakra" class="sudarshan-img">
</main>
</body>
<script>
document.querySelector("header").addEventListener("click", function() {
var headerUl = document.querySelector(".header-ul");
var head = document.querySelector("header");
if (headerUl.style.display === "none") {
headerUl.style.display = "flex";
head.style.backgroundImage = "none";
} else {
headerUl.style.display = "none";
}
});
</script>
</html>