From 398496cfd5cb94b8fccb446ef4be864677bca9e7 Mon Sep 17 00:00:00 2001
From: Fahad Memon <116836378+fahad-sajid@users.noreply.github.com>
Date: Mon, 13 Nov 2023 13:50:45 +0000
Subject: [PATCH] profile update with data
---
index.html | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++
styles.css | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 147 insertions(+)
create mode 100644 index.html
create mode 100644 styles.css
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..606100f
--- /dev/null
+++ b/index.html
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+ Fahad Memon - Tech Enabler
+
+
+
+
+
+
+
+
+
+
+
+ Top Skills
+
+
Engineering Drawings
+
Mechatronics
+
Problem Solving
+
+
+
+
+ Certifications
+ Registered Engineer (RE)
+ Introduction to Career Skills in Software Development
+ Digital Technologies Case Studies: AI, IoT, Robotics, Blockchain
+
+
+
+ Summary
+ Always a student to learn, a Mechanical Engineer with a curious mind...
+
+
+
+
+
+
+
+
+
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..ff26749
--- /dev/null
+++ b/styles.css
@@ -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;
+}