-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (134 loc) · 4.43 KB
/
index.html
File metadata and controls
156 lines (134 loc) · 4.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Machine Learning Lab - CS4172</title>
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa; /* Soft white-gray */
color: #495057; /* Muted dark gray */
line-height: 1.6;
}
/* Header Styling */
header {
background: linear-gradient(135deg, #a7c5eb, #f1e7fe); /* Light blue to lavender */
text-align: center;
padding: 40px 20px;
color: #495057; /* Muted dark gray */
border-bottom: 5px solid #dee2e6; /* Subtle border */
}
header h1 {
font-size: 3rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
opacity: 0.9;
}
/* Main Section */
main {
padding: 40px 20px;
text-align: center;
}
h2 {
font-size: 2.5rem;
color: #6c757d; /* Muted gray */
margin-bottom: 20px;
border-bottom: 2px solid #a7c5eb; /* Subtle blue line */
display: inline-block;
padding-bottom: 5px;
}
p {
font-size: 1.1rem;
color: #6c757d; /* Muted gray */
margin-bottom: 20px;
}
/* Link List Styling */
.link-list {
list-style-type: none;
padding: 0;
}
.link-list li {
margin: 10px 0;
font-size: 1.3rem;
}
.link-list a {
text-decoration: none;
color: #6c757d; /* Muted gray */
transition: color 0.3s ease;
}
.link-list a:hover {
color: #495057; /* Muted dark gray */
}
/* Footer Styling */
footer {
text-align: center;
padding: 20px;
background: #f1e7fe; /* Lavender background */
color: #495057; /* Muted dark gray */
border-top: 5px solid #dee2e6; /* Subtle border */
}
footer a {
color: #6c757d;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 2.5rem;
}
main {
padding: 20px;
}
h2 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Machine Learning Lab - CS4172</h1>
<p>Your go-to resource for assignments and lecture notes</p>
</header>
<main>
<h2>Assignments</h2>
<p>Explore the assignments:</p>
<ul class="link-list">
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/tree/main/Assignment01">Assignment 01</a></li>
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/tree/main/Assignment02">Assignment 02</a></li>
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/tree/main/Assignment03">Assignment 03</a></li>
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/tree/main/Assignment04">Assignment 04</a></li>
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/tree/main/Assignment05">Assignment 05</a></li>
</ul>
<h2>Resources</h2>
<p>Access the resources:</p>
<ul class="link-list">
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/tree/main/Lecture Notes">Notes</a></li>
</ul>
<h2>Setup & Requirements</h2>
<p>Learn how to set up your environment:</p>
<ul class="link-list">
<li><a href="https://github.com/RP2025/Machine-Learning-Lab-CS4172/blob/main/README.md">Setup Instructions</a></li>
</ul>
<h2>Made with ❤️ by RP2025</h2>
<p>Find me on <a href="https://www.linkedin.com/in/raksha-pahariya-409842227/" target="_blank">LinkedIn</a></p>
</main>
<footer>
<p>© 2024 Machine Learning Lab - CS4172</p>
</footer>
</body>
</html>