-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
224 lines (190 loc) Β· 6.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Farha Kousar - Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* Styles for body, headers, and sections remain the same */
/* Update header styles */
header {
background-color: #4CAF50;
color: #fff;
padding: 20px 0;
text-align: center;
border-bottom: 2px solid #fff;
}
/* Update section styles */
section {
padding: 40px 20px;
background-color: #f9f9f9;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Update footer styles */
footer {
background-color: #4CAF50;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
/* Update social icon styles */
.social-icon {
margin: 0 5px;
color: #4CAF50;
font-size: 24px;
}
/* Update resume section styles */
.resume {
text-align: left;
}
.resume h3 {
color: #4CAF50;
}
.resume ul {
list-style-type: none;
padding: 0;
}
.resume ul li {
margin-bottom: 10px;
}
/* Update contact section styles */
.contact {
text-align: center;
}
.contact p {
margin: 5px 0;
}
/* Update project section styles */
.project {
text-align: left;
}
.project h3 {
color: #4CAF50;
}
.project ul {
list-style-type: none;
padding: 0;
}
.project ul li {
margin-bottom: 10px;
}
/* Update certification section styles */
.certification {
text-align: left;
}
.certification h3 {
color: #4CAF50;
}
.certification ul {
list-style-type: none;
padding: 0;
}
.certification ul li {
margin-bottom: 10px;
}
/* Update interests section styles */
.interests {
text-align: left;
}
.interests h3 {
color: #4CAF50;
}
.interests ul {
list-style-type: none;
padding: 0;
}
.interests ul li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<header>
<div class="container">
<img src="https://github.com/FarhaKousar1601/FarhaKousar1601/blob/main/NUX_Octodex.gif" width="250" />
<h1>Hi, I'm Farha Kousar, a student passionate about Artificial Intelligence and Machine Learning π</h1>
<p>A student pursuing a B.Tech in Artificial Intelligence and Machine Learning</p>
</div>
</header>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>
I'm passionate about technology and always eager to learn new things. Currently in my 3rd year at KNS Institute of Technology, Karnataka. I have a keen interest and practical exposure in the field of information security, especially web applications security and Artificial Intelligence.
</p>
</div>
</section>
<section id="education">
<div class="container">
<h2>Education</h2>
<p><strong>B.Tech, Artificial Intelligence and Machine Learning (2021-2025)</strong><br>
KNS Institute of Technology, Karnataka<br>
CGPA β 8.17/10</p>
<p><strong>12th (Senior Secondary Examination) - 2021</strong><br>
CBSE Board, 69%</p>
<p><strong>10th (Secondary Examination) - 2019</strong><br>
CBSE Board, 63%</p>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<p>Programming Languages: C, C++, Java, Python</p>
<p>Version Control: Git, GitHub</p>
<p>Software Tools: Matlab, Firebase, Anaconda, MIT App Inventor</p>
<p>Design Tools: Canva, Tinkercad, Solid Edge</p>
</div>
</section>
<section id="projects" class="project">
<div class="container">
<h2>Projects</h2>
<h3>Project Title 1</h3>
<p>Description of the project goes here.</p>
<h3>Project Title 2</h3>
<p>Description of the project goes here.</p>
<!-- Add more projects if needed -->
</div>
</section>
<section id="certifications" class="certification">
<div class="container">
<h2>Certifications</h2>
<ul>
<li>Certification 1 - Issuing Organization - Year</li>
<li>Certification 2 - Issuing Organization - Year</li>
<!-- Add more certifications if needed -->
</ul>
</div>
</section>
<section id="interests" class="interests">
<div class="container">
<h2>Interests</h2>
<ul>
<li>Interest 1</li>
<li>Interest 2</li>
<!-- Add more interests if needed -->
</ul>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact</h2>
<p>Farha Kousar<br>
Bangalore, Karnataka<br>
Email: farhakousar576@gmail.com</p>
</div>
</section>
<!-- Add more sections as needed -->
<footer>
<div class="container">
<a href="https://www.linkedin.com/in/farha-kousar-19a95b17b/" class="social-icon"><i class="fab fa-linkedin"></i></a>
<!-- Add more social icons and links as needed -->
</div>
</footer>
</body>
</html>