ARAVIND-INFO / projects.html
aravind9788's picture
upload my web
b4d488a verified
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Projects - Aaravind</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="background-3d"></div>
<div class="sidebar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html" class="active">Projects</a>
<a href="contact.html">Contact</a>
</div>
<div class="main">
<h1>My Projects</h1>
<div class="project-card">
<h2>1. Image Analyzer</h2>
<p>A beginner-friendly image processing tool that extracts useful details from uploaded images using AI.</p>
<ul>
<li>Automatically detects and describes image content</li>
<li>Built using Python and basic computer vision</li>
</ul>
<p class="highlight">πŸ’‘ Great for exploring AI + image tools in a simple way.</p>
</div>
<!-- Project 2 -->
<div class="project-card">
<h2>2. Pet Name Analyzer</h2>
<p>A fun and smart tool that gives meaning, uniqueness, and personality insights into any pet name.</p>
<ul>
<li>Input your pet's name β†’ get analysis</li>
<li>Built using Gemini AI API or GPT</li>
<li>Can suggest cute or unique names</li>
</ul>
<p class="highlight">πŸ’‘ Combines creativity with API power – fun and engaging!</p>
</div>
<!-- Project 3 -->
<div class="project-card">
<h2>3. Simple AI Jarvis Assistant</h2>
<p>A voice-controlled assistant inspired by Iron Man’s J.A.R.V.I.S., built with Python and basic AI.</p>
<ul>
<li>Voice command with speech recognition</li>
<li>Replies with speech (text-to-speech)</li>
<li>Can search Google, play YouTube, and more</li>
</ul>
<p class="highlight">πŸ’‘ Great intro to automation, voice tech, and Python scripting.</p>
</div>
<!-- Project 4 -->
<div class="project-card">
<h2>4. LangChain Chat Bot</h2>
<p>An intelligent chatbot built using LangChain for real-time, AI-powered conversation.</p>
<ul>
<li>Built using LangChain and Gemini/OpenAI</li>
<li>Supports tools, memory, and Q&A</li>
<li>Can be extended with knowledge base</li>
</ul>
<p class="highlight">πŸ’‘ Shows advanced use of LLMs and next-gen AI tools.</p>
</div>
<!-- Project 5 -->
<div class="project-card">
<h2>5. Online Shopping Website</h2>
<p>A simple and functional e-commerce website with cart, filter, and user login.</p>
<ul>
<li>Flask + MongoDB backend</li>
<li>Add to cart, remove, show total</li>
<li>Login/Register and product search</li>
</ul>
<p class="highlight">πŸ’‘ Full-stack app – frontend, backend, database integration.</p>
</div>
</div>
</body>
</html>