diff --git a/src/index.html b/src/index.html index 6a7c812fa..2f4c05761 100644 --- a/src/index.html +++ b/src/index.html @@ -1,14 +1,80 @@ - - - - - HTML Portfolio - - + + + + + HTML Portfolio + + +
+

Software Developer Portfolio

+ +
- Welcome to the HTML Portfolio Project +
+

About Me

+

+ I'm a passionate software developer with expertise in web development, + mobile app development, and software engineering. I have a strong + background in programming languages such as JavaScript, Python, Java, + and C++, and I enjoy solving complex problems and creating innovative + solutions. +

+
- +
+

Projects

+
+

Portfolio Website

+

+ A responsive portfolio website showcasing my skills, projects, and + experience. Built using HTML, CSS, and JavaScript. +

+
+
+

E-commerce Website

+

+ An e-commerce platform developed using React.js for the frontend and + Node.js with Express.js for the backend. Integrated with payment + gateways and user authentication. +

+
+
+

Mobile App

+

+ A mobile application built for iOS and Android using React Native. The + app helps users track their fitness goals and provides personalized + workout plans. +

+
+
+ +
+

Contact Me

+

+ Feel free to reach out to me for collaboration opportunities, project + inquiries, or just to say hello! +

+
+ +
+ +
+
+
+ +
+
+ diff --git a/src/main.css b/src/main.css index e69de29bb..52525d99d 100644 --- a/src/main.css +++ b/src/main.css @@ -0,0 +1,102 @@ +/* Resetting default margin and padding */ +body, +h1, +h2, +h3, +p, +ul { + margin: 0; + padding: 0; +} + +/* Setting default font */ +body { + font-family: Arial, sans-serif; +} + +/* Header styles */ +header { + background-color: #1e88e5; /* Blue */ + color: #fff; + padding: 20px; + text-align: center; +} + +header h1 { + margin: 0; +} + +nav ul { + list-style-type: none; +} + +nav ul li { + display: inline; + margin-right: 20px; +} + +nav ul li a { + color: #fff; + text-decoration: none; +} + +/* Main content styles */ +main { + padding: 20px; +} + +section { + margin-bottom: 40px; +} + +section h2 { + color: #1e88e5; /* Blue */ + margin-bottom: 20px; +} + +/* Project styles */ +.project { + background-color: #fff; + padding: 20px; + border-radius: 5px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + margin-bottom: 20px; +} + +.project h3 { + color: #1e88e5; /* Blue */ +} + +/* Contact form styles */ +form { + max-width: 500px; + margin: 0 auto; +} + +label { + display: block; + margin-bottom: 5px; +} + +input[type="text"], +input[type="email"], +textarea { + width: 100%; + padding: 10px; + margin-bottom: 10px; + border: 1px solid #ccc; + border-radius: 5px; +} + +button { + background-color: #4caf50; /* Green */ + color: #fff; + padding: 10px 20px; + border: none; + border-radius: 5px; + cursor: pointer; +} + +button:hover { + background-color: #45a049; /* Darker Green */ +}