PORTFOLIO
Profile
Available for work

Rishabh Joshi

Designing visuals that help brands

More about myself

Hi, I'm Rishabh Joshi, a passionate web designer with a mission to bring creative ideas to life through exceptional design concepts.

Who am I?

Rishabh Joshi

Hi! I'm Rishabh, an Electrical and Computer Engineering (ECE) major at Shiv Nadar University. I'm passionate about combining technology and creativity—whether it's through programming, designing intuitive user interfaces, or building responsive websites. With a foundation in Java, PHP, and Python, I enjoy developing functional and visually appealing web applications. My skills in UI/UX design allow me to craft user-centered digital experiences, and I'm constantly exploring new tools and trends to grow as a full-stack developer and engineer. I'm always excited to take on new challenges that help bridge the gap between electronics and software development.

Programming Languages

Python
Java
C++
C#
Kotlin
HTML
CSS
JavaScript
React
Next.js
Tailwind CSS
Python
Java
C++
C#
Kotlin
HTML
CSS
JavaScript
React
Next.js
Tailwind CSS

Tools & Software

Figma
Adobe XD
Photoshop
VS Code
WWindsurf
Git
GitHub
Firebase
Figma
Adobe XD
Photoshop
VS Code
WWindsurf
Git
GitHub
Firebase

Your Questions Answered

You will find answers to the most common questions here, but if you still need help, feel free to contact me.

Who is Rishabh Joshi?

An ECE student passionate about blending design and development, creating intuitive digital experiences with modern technologies and innovative approaches.

What services do you provide?

UI/UX Design, Web Development, Full-Stack Development, Interactive Design Solutions, and comprehensive Digital Experience Creation tailored to client needs.

What is your educational background?

Electrical and Computer Engineering (ECE) Major at Shiv Nadar University with specialized expertise in design and full-stack development practices.

Skills & Experience

React.js
JavaScript
HTML
CSS
Python
Java
PHP
C++
C#
Kotlin
jQuery
E-Commerce Development
Front-End Development
Back-End Development
Full-Stack Development
UI Design
UX Design
Responsive Design
Interaction Design
Animations
Form Validation
Figma
Adobe XD
Photoshop
Photography
Videography
DaVinci Resolve
Capcut

Frontend Developer Intern

Internship Studio · Internship

Dec 2025 - Present · 2 mos

Remote

Built a fully functional E-Commerce website for buying/selling goods/services online with essential pages and interactive features.

View Project Details

Key Pages & Components:

  • Home: Navbar, sliders, shop by category, latest products, features, footer, scroll_to_top
  • Products: Products list, category filter, price range filter
  • Product View: Title, images, description, price, ratings, related products, add to cart
  • Category: Category list, title, images, short description
  • Cart: Products list (title, images, quantity, price), total amount
  • Checkout: Order summary, shipping info form
  • Order Confirmation: Message, order no., status
  • About Us: Images, text, features, testimonials
  • Contact Us: Contact info, form with JS/jQuery validation
  • Search: Search bar, products listing

The finished application resembles a simplified but realistic online store, including browsing flows, cart interactions, and a basic checkout and order confirmation experience, allowing it to stand out in a portfolio compared to static landing pages.

React.js CSS JavaScript jQuery E-Commerce UI/UX

Videography Director - Business Conclave 2025

Sep 2025 - Present

Leading the visual storytelling and coverage of the annual business submit.

Photographer - Cultural Committee

May 2025 - Present

Capturing vibrant moments and events for the university's cultural body.

Freelance Web Designer - Self-Employed

May 2024 - Present

Crafting modern, responsive, and performance-driven websites for various clients.

My Latest Projects

View All Projects →
>// IoT AQI & Temperature Monitoring System
#include 
#include 
#include 

#define DHTPIN 4
#define DHTTYPE DHT22

DHT dht(DHTPIN, DHTTYPE);

void setup() {
    Serial.begin(115200);
    dht.begin();
    WiFi.begin(SSID, PASSWORD);
    
    Firebase.begin(FIREBASE_URL, FIREBASE_KEY);
}

void loop() {
    float temp = dht.readTemperature();
    float humidity = dht.readHumidity();
    
    Firebase.setFloat("temperature", temp);

IoT Sensor System

Real-time temperature & humidity monitoring with Firebase integration for IoT applications.

C++ IoT Firebase
>// Binary Search Tree Implementation
class Node {
    constructor(value) {
        this.value = value;
        this.left = null;
        this.right = null;
    }
}

class BST {
    constructor() {
        this.root = null;
    }

    insert(value) {
        const newNode = new Node(value);
        if (this.root === null) {
            this.root = newNode;
            return this;
        }
        let current = this.root;
        while (true) {
            if (value === current.value) return undefined;
            if (value < current.value) {
                if (current.left === null) {
                    current.left = newNode;
                    return this;
                }
                current = current.left;

Data Structures Library

Comprehensive implementation of BST, graphs, and sorting algorithms for interview prep.

JavaScript DSA Algorithms

Let's Stay Connected

Got questions or want to collaborate? Feel free to reach out—I'm open to new projects or just a casual chat about design and development!

help@rishabhj.in