-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
116 lines (112 loc) · 3.46 KB
/
Copy pathabout.html
File metadata and controls
116 lines (112 loc) · 3.46 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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Me</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
.circular--portrait {
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
border-radius: 50%;
}
.circular--portrait img {
width: 100%;
height: auto;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.about-us{
height: 100vh;
width: 100%;
padding: 90px 0;
}
.about{
width: 1130px;
max-width: 85%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-around;
}
.text{
width: 540px;
}
.text h2{
font-size: 90px;
font-weight: 600;
margin-bottom: 10px;
}
.text h5{
font-size: 22px;
font-weight: 500;
margin-bottom: 20px;
}
span{
color: #4070f4;
}
.text p{
font-size: 18px;
line-height: 25px;
letter-spacing: 1px;
}
body{
background: url(images/bg1.jpeg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: sans-serif;
background-size: 100% 100%;
}
</style>
</head>
<body>
<section class="about-us">
<div class="about">
<div class="text">
<h2>About Me</h2>
<div class="circular--portrait"> <img src="images/photo1.jpg" /> </div><br>
<h5>Currently Seeking a <span>Python Developer Role</span></h5>
<p>Hi, I'm <b>Mayana Mohammed Fazil Khan</b>, a Computer Science graduate (B.Tech, 2024) from Aditya College of Engineering, Madanapalle.
I am passionate about problem-solving, full-stack development, and AI/ML applications. I am currently interning at Katalix Solutions, where I work with IBM Watsonx, focusing on data cleaning, AI/ML model development, and predictive analytics.</p><br>
<ul>
<b>Personal Details</b>
<li>Name: Mayana Mohammed Fazil Khan</li>
<li>Age: 21</li>
<li>Education: B.Tech in Computer Science & Engineering</li>
<li>Location: Bangalore</li>
</ul><br>
<ul>
<b>Technical Skills</b><br>
<li>Python, Django, MySQL</li>
<li>HTML, CSS, JavaScript</li>
<li>Data Structures & Algorithms</li>
<li>IBM Watsonx AI, AutoAI, Cloud Computing</li>
</ul><br>
<ul>
<b>Internships & Experience</b>
<li>Intern at Katalix Solutions - Working on IBM Watsonx, AI/ML, Data Fabrics</li>
<li>Full-Stack Python Developer Internship</li>
<li>AI-ML Virtual Internship</li>
</ul><br>
<ul>
<b>Online Certifications</b>
<li>Advanced Computer Architecture (NPTEL)</li>
<li>Data Structures & Algorithms (Code360)</li>
<li>Responsive Web Design (freeCodeCamp)</li>
</ul><br>
<br><br>
</div>
</div>
</section>
</body>
</html>