Latest Posts
Deploying Your Website
admin@gmail.com • 3/19/2026
Introduction
Deployment = putting your site online.
Platforms
Netlify
Vercel
GitHub Pages
Steps
Push code to GitHub
Connect to hosting platform
Deploy
Domains
Optional custom URL (e.g. yourname.com)
Recap
Deployment makes your work visible.

Working with APIs
test@gmail.com • 3/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.

Intro to React
admin@gmail.com • 3/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.
