2024-10-04_09.49.29
2024-10-04_09.49.29
Sections:
1. Education
I'll create the webpage using simple HTML/CSS. Here's the code for a basic webpage:
<!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>Imran Ali Channa - Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e0f7fa;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #0288d1;
color: white;
text-align: center;
padding: 1rem;
}
section {
max-width: 900px;
margin: 2rem auto;
padding: 1rem;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #0288d1;
}
footer {
background-color: #0288d1;
color: white;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
a {
color: #0288d1;
}
</style>
</head>
<body>
<header>
<h1>Imran Ali Channa</h1>
<p>Son of Muhammad Murad | Choondiko City, Khairpur Mir's, Sindh</p>
</header>
<section>
<h2>About Me</h2>
<p>Hello! I'm Imran Ali Channa, currently living in Choondiko City, Taluka
Nara, District Khairpur Mir's, Sindh, Pakistan.
I am pursuing my education at Superior Science College Khairpur Mir's and
am also enrolled in a Diploma in Information Technology (DIT) course at Microsoft
Centre.
My passion lies in learning new technologies and expanding my skill set in
IT.</p>
</section>
<section>
<h2>Education</h2>
<ul>
<li><strong>Superior Science College Khairpur Mir's</strong> -
Undergraduate Student</li>
<li><strong>Microsoft Centre</strong> - Diploma in Information
Technology (DIT)</li>
</ul>
</section>
<footer>
<p>Contact me: <a href="mailto:[email protected]">[email protected]</a></p>
<p>© 2024 Imran Ali Channa</p>
</footer>
</body>
</html>
Instructions:
1. Copy the code above and save it in a .html file (e.g., index.html).
You can customize the contact email and any other details you want. Let me know if
you'd like to add or modify anything further!