-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5cd3dbb
commit 398496c
Showing
2 changed files
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Fahad Memon - Tech Enabler</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" | ||
integrity="sha512-wD7eD9tZTCqv9cZ4U3g5aVxFLO7ByIPk7sT7XxFZ1Mq5NxK9uUZlsw/Tbz0JBFv+pb0dXvyVoZs7b9i6f4i4tQ==" | ||
crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
</head> | ||
|
||
<body> | ||
|
||
<header> | ||
<div class="avatar"> | ||
<!-- Add your profile picture here --> | ||
<!-- <img src="your-image-url.jpg" alt="Profile Picture"> --> | ||
</div> | ||
<div class="header-text"> | ||
<h1>Fahad Memon</h1> | ||
<p>Tech Enabler | Blockchain Implementation | Engineer</p> | ||
<p>Pakistan</p> | ||
</div> | ||
</header> | ||
|
||
<section class="contact"> | ||
<div> | ||
<h2>Contact</h2> | ||
<p>PECHS Block 6, Karachi</p> | ||
<p><i class="fas fa-mobile-alt"></i> +92 3462573147 (Mobile)</p> | ||
<p><i class="far fa-envelope"></i> <a href="mailto:me.fahadsajid@gmail.com">me.fahadsajid@gmail.com</a></p> | ||
</div> | ||
<div> | ||
<h2>Links</h2> | ||
<p><i class="fab fa-linkedin"></i> <a href="www.linkedin.com/in/fahad-sajid" target="_blank">LinkedIn</a></p> | ||
<p><i class="fab fa-researchgate"></i> <a href="www.researchgate.net/profile/Fahad_Memon" target="_blank">Portfolio</a></p> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<h2>Top Skills</h2> | ||
<div class="skills"> | ||
<div class="skill">Engineering Drawings</div> | ||
<div class="skill">Mechatronics</div> | ||
<div class="skill">Problem Solving</div> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<h2>Certifications</h2> | ||
<p>Registered Engineer (RE)</p> | ||
<p>Introduction to Career Skills in Software Development</p> | ||
<p>Digital Technologies Case Studies: AI, IoT, Robotics, Blockchain</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Summary</h2> | ||
<p>Always a student to learn, a Mechanical Engineer with a curious mind...</p> | ||
</section> | ||
|
||
<!-- You can continue adding sections for Experience and Education --> | ||
|
||
<footer> | ||
<p>© 2023 Fahad Memon</p> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f5f5f5; | ||
color: #333; | ||
} | ||
|
||
header { | ||
background-color: #3498db; | ||
color: #fff; | ||
text-align: center; | ||
padding: 2rem 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.avatar img { | ||
border-radius: 50%; | ||
width: 100px; /* Adjust as needed */ | ||
height: 100px; /* Adjust as needed */ | ||
object-fit: cover; | ||
margin-right: 20px; | ||
} | ||
|
||
.header-text { | ||
text-align: left; | ||
} | ||
|
||
section { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
margin-bottom: 20px; | ||
border-radius: 5px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
h2 { | ||
color: #3498db; | ||
} | ||
|
||
h3 { | ||
color: #333; | ||
} | ||
|
||
p { | ||
line-height: 1.6; | ||
} | ||
|
||
.contact { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.skills { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.skill { | ||
background-color: #3498db; | ||
color: #fff; | ||
padding: 5px 10px; | ||
margin: 5px; | ||
border-radius: 3px; | ||
} | ||
|
||
footer { | ||
background-color: #333; | ||
color: #fff; | ||
text-align: center; | ||
padding: 1rem 0; | ||
} |