Skip to content

Commit c80de9d

Browse files
Update README.md
1 parent b027486 commit c80de9d

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
2+
3+
4+
<!DOCTYPE html>
5+
<html>
6+
<head>
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<style>
9+
body {
10+
padding: 25px;
11+
background-color: white;
12+
color: black;
13+
font-size: 25px;
14+
}
15+
16+
.dark-mode {
17+
background-color: black;
18+
color: white;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
24+
25+
26+
27+
28+
29+
30+
31+
132
# Depression-Detection-System-Using-Machine-Learning
233

334

@@ -23,4 +54,22 @@ SYSTEM REQUIREMENT
2354
DOWNLOAD THE PROJECT REPORT ➡️
2455

2556

57+
<button onclick="myFunction()">Toggle dark mode</button>
58+
59+
60+
2661
📁 [Depression Detection System Using Machine Learning Report SM G1.pdf](https://github.com/SUBHADIPMAITI-DEV/Depression-Detection-System-Using-Machine-Learning/files/10097750/Depression.Detection.System.Using.Machine.Learning.Report.SM.G1.pdf)
62+
63+
64+
65+
<button onclick="myFunction()">Toggle dark mode</button>
66+
67+
<script>
68+
function myFunction() {
69+
var element = document.body;
70+
element.classList.toggle("dark-mode");
71+
}
72+
</script>
73+
74+
</body>
75+
</html>

0 commit comments

Comments
 (0)