Posts

Showing posts with the label code snippets

Full Stack Learning Blog — HTML, CSS, JavaScript, Python, Java

Image
Full Stack Learning Blog A compact, practical roadmap: HTML, CSS, JavaScript, Java, Python — tips, tricks & mini projects. Setup HTML CSS JavaScript Python Java Projects Kickoff — Tools & Setup VS Code + extensions: Prettier, Live Server, Python, Java Node.js (LTS) Git + GitHub JDK 21+ Python 3.11+ Daily habit: 2 Pomodoro cycles, commit daily. HTML — The Foundation <!doctype html> <html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width,initial-scale=1"/> <title>My First Page</title> </head> <body> <header><h1>Hello, World!</h1></header> <main><p>This is my first blog pos...