Welcome to My Blog

Sets of notes about web development and more

Explore the Blog

Latest Posts

Deploying Your Website

admin@gmail.com3/19/2026

Introduction

Deployment = putting your site online.

Platforms

  • Netlify

  • Vercel

  • GitHub Pages

Steps

  1. Push code to GitHub

  2. Connect to hosting platform

  3. Deploy

Domains

Optional custom URL (e.g. yourname.com)

Recap

Deployment makes your work visible.


Read more →

Working with APIs

test@gmail.com3/19/2026

Introduction

APIs let you fetch real data.

Example

fetch("https://api.example.com")
  .then(res => res.json())
  .then(data => console.log(data));

JSON

Data format used in APIs.

Mini Project

Recap

APIs connect your app to the world.


Read more →

Intro to React

admin@gmail.com3/19/2026

Introduction

React helps build complex UIs.

Component Example

function App() {
  return <h1>Hello</h1>;
}

Concepts

  • Components

  • Props

  • State

Recap

React = reusable UI components.


Read more →
View All Posts →