From ee98e17c20e0c45777aafabee4b5a921f17566de Mon Sep 17 00:00:00 2001
From: Iswarya952 <24b01a1232@svecw.edu.in>
Date: Fri, 24 Oct 2025 19:16:19 +0530
Subject: [PATCH] Replace old portfolio with fresh code
---
src/index.html | 32 +++++++++++++++++++++++++---
src/main.css | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 86 insertions(+), 3 deletions(-)
diff --git a/src/index.html b/src/index.html
index 6a7c812..d55d588 100644
--- a/src/index.html
+++ b/src/index.html
@@ -2,13 +2,39 @@
-
+
- HTML Portfolio
+ Iswarya Portfolio
- Welcome to the HTML Portfolio Project
+
+ Iswarya
+ Undergraduate
+
+
+
+ About Me
+ I love learning programming and building simple projects.
+
+
+
+ My Skills
+
+ - Java
+ - C
+ - Python
+ - HTML
+
+
+
+
+ Contact Me
+
+ Connect with me on
+ GitHub
+
+
diff --git a/src/main.css b/src/main.css
index e69de29..416a62e 100644
--- a/src/main.css
+++ b/src/main.css
@@ -0,0 +1,57 @@
+body {
+ font-family: Arial, sans-serif;
+ background-color: #f5f7fa;
+ color: #333;
+ text-align: center;
+ margin: 0;
+ padding: 0;
+}
+
+header {
+ background-color: #4f46e5;
+ color: white;
+ padding: 40px 20px;
+}
+
+h1 {
+ margin: 0;
+ font-size: 2.5em;
+}
+
+h2 {
+ margin: 10px 0 20px 0;
+ font-weight: normal;
+}
+
+section {
+ background-color: white;
+ margin: 20px auto;
+ padding: 20px;
+ width: 80%;
+ max-width: 700px;
+ border-radius: 10px;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+}
+
+ul {
+ list-style-type: none;
+ padding: 0;
+}
+
+li {
+ display: inline-block;
+ margin: 5px;
+ padding: 5px 12px;
+ background-color: #e0e7ff;
+ border-radius: 5px;
+}
+
+a {
+ color: #4f46e5;
+ font-weight: bold;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}