From a881e106b5b179ad4ca000d2dff8977b3bc26809 Mon Sep 17 00:00:00 2001 From: ishitha1611 Date: Sat, 13 Dec 2025 10:06:26 +0530 Subject: [PATCH] Add files via upload --- index.html | 165 +++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 81 ++++++++++++++++++++++++++ 2 files changed, 246 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..a9004a9 --- /dev/null +++ b/index.html @@ -0,0 +1,165 @@ + + + + + + + Ishitha Madicharla — AIML Student + + + + + + + + +
+
+
+
IM
+
+

AIML Student

+

Hi — I'm Ishitha

+

I am a 2nd-year BTech AIML student passionate about building AI models, automation tools, and full-stack web apps. I enjoy solving real-world problems using Python, ML, and React. Currently looking for opportunities to intern and collaborate on AI or software projects.

+ + + + +
+
+ +
+
+

Quick Facts

+
    +
  • Location: India
  • +
  • Role: 2nd-year BTech AIML student
  • +
  • Open to: Internships, collaborations
  • +
+
+
+
+ +
+

Technical Skills

+
+ HTML + CSS + JavaScript + Python + Pandas + Scikit-learn + React + Cloud basics +
+ +

Soft Skills

+
+ Teamwork + Communication +
+
+ +
+

Projects

+

+ +
+
+

Spam Email Detection

+

Machine learning model to classify emails as spam or not-spam. Built using Python, Pandas, scikit-learn and evaluated with precision/recall metrics.

+

Tech: Python, Pandas, scikit-learn

+ View on GitHub +
+ +
+

CRUD Task Manager (React)

+

A responsive task manager with create/read/update/delete features and local storage persistence. Designed with React and modern hooks.

+

Tech: React, JavaScript, HTML, CSS

+ View on GitHub +
+ +
+

Handwritten Digit Recognition

+

Convolutional neural network trained on MNIST to recognize digits with data augmentation and simple preprocessing.

+

Tech: Python, TensorFlow/Keras, NumPy

+ View on GitHub +
+
+
+ +
+

Education

+
+
+

BTech — AIML (2nd year)

+

Currently pursuing a BTech in AIML.

+
+ +
+

Intermediate — Narayana Junior College

+

CGPA: 9.2

+
+ +
+

Schooling — Slate The School

+

10 CGPA

+
+
+ +

Certifications

+
    +
  • Python Developer
  • +
  • AWS Architect Solutions
  • +
  • Microsoft Azure Fundamentals
  • +
  • B10X AAI Tools Workshop
  • +
+
+ +
+

Contact

+

If you'd like to get in touch for internships or collaborations, you can email me or call.

+ +
+ +
+

Phone

+

+91 90008 75688

+
+
+ +

Download resume: Resume (PDF) — replace the link with your uploaded resume file.

+
+
+ + + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..f032ba9 --- /dev/null +++ b/style.css @@ -0,0 +1,81 @@ +/* Base styles */ +:root{ + --bg:#0f1724; + --card:#0b1220; + --muted:#94a3b8; + --accent:#6ee7b7; + --glass: rgba(255,255,255,0.03); + --radius:14px; + --container:1100px; + font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; +} + +*{box-sizing:border-box} +html,body{height:100%;} +body{ + margin:0; + background: linear-gradient(180deg,#081224 0%, #071026 100%); + color:#e6eef6; + -webkit-font-smoothing:antialiased; + -moz-osx-font-smoothing:grayscale; + line-height:1.5; +} +.container{max-width:var(--container);margin:0 auto;padding:1.5rem} + +/* Header */ +.site-header{backdrop-filter: blur(6px);border-bottom:1px solid rgba(255,255,255,0.03)} +.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0} +.logo{font-size:1.1rem;margin:0;font-weight:700} +.nav a{color:var(--muted);text-decoration:none;margin-left:1rem;font-weight:600} +.nav a:hover{color:var(--accent)} + +/* Hero */ +.hero{display:grid;grid-template-columns:1fr 320px;gap:2rem;align-items:start;padding:2rem 0} +.hero-left{display:flex;gap:1.25rem;align-items:flex-start} +.avatar{width:96px;height:96px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.25rem;background:linear-gradient(135deg,#0f1724,#122135);border:1px solid rgba(255,255,255,0.03)} +.subtitle{color:var(--accent);font-weight:700;margin:0} +.lead{color:var(--muted);margin-top:0.5rem} +.contact-quick{margin-top:0.75rem;color:var(--muted)} +.contact-quick a{color:#dbeafe;text-decoration:none} +.links{margin-top:0.75rem} +.links a{display:inline-block;margin-right:0.75rem;padding:0.35rem 0.6rem;border-radius:8px;background:var(--glass);text-decoration:none;color:#dbeafe;font-weight:600} + +.card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:1rem;border-radius:12px;border:1px solid rgba(255,255,255,0.03)} +.card h3{margin-top:0} + +/* Sections */ +.section{padding:1.5rem 0} +.chips{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:0.5rem} +.chips span{background:rgba(255,255,255,0.03);padding:0.4rem 0.6rem;border-radius:999px;font-weight:600;color:var(--muted);} + +.project-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem;margin-top:1rem} +.project{background:var(--card);padding:1rem;border-radius:12px;border:1px solid rgba(255,255,255,0.02)} +.project h4{margin:0 0 0.4rem 0} +.project .meta{color:var(--muted);font-size:0.9rem} +.btn{display:inline-block;margin-top:0.75rem;padding:0.45rem 0.75rem;border-radius:8px;background:transparent;border:1px solid rgba(255,255,255,0.06);text-decoration:none;color:inherit;font-weight:700} +.btn.small{font-size:0.9rem;padding:0.3rem 0.5rem} + +.edu-grid{display:flex;flex-wrap:wrap;gap:1rem} +.edu{background:var(--glass);padding:0.75rem;border-radius:10px;border:1px solid rgba(255,255,255,0.02);min-width:220px} +.certs{margin:0 0 0 1rem} + +.contact-cards{display:flex;gap:1rem;margin-top:1rem} +.card.small{flex:1} +.muted{color:var(--muted);font-size:0.95rem} +.link{color:var(--accent);text-decoration:none} + +/* Footer */ +.site-footer{border-top:1px solid rgba(255,255,255,0.03);padding:1rem 0;margin-top:2rem} +.site-footer p{margin:0;color:var(--muted)} + +/* Responsive */ +@media (max-width:900px){ + .hero{grid-template-columns:1fr;} + .nav{display:none} + .header-inner{justify-content:space-between} +} + +@media (max-width:480px){ + .avatar{width:72px;height:72px;font-size:1rem} + .container{padding:1rem} +}