swstack

swstack (102)

swstack

JavaScript - 2

JavaScript - 2: Variables Create two variables: name (a string) and age (a number). Then use console.log() to print a message like: "Hi, I'm [name] and I am [age] years old." let name = "Alex"; let age = 25; console.log("Hi, I'm " + name +…

Continue reading...
swstack

JavaScript - 1

JavaScript - 1: Your First JavaScript Use console.log() to print "Hello, JavaScript!" in the output panel below. console.log("Hello, JavaScript!");

Continue reading...
swstack

HTML/CSS - 30

HTML/CSS - 30: Final Capstone Project Build a complete, modern, multi-page website using everything you've learned across all three levels. <header> <nav>...</nav> </header> <main> <section class="hero">...</section> <section class="projects">...</section> </main> <footer>...</footer>

Continue reading...
swstack

HTML/CSS - 29

HTML/CSS - 29: Building a Design System Learn how to create a consistent, professional design system with tokens, components, and documentation. :root { --primary: #00ff9d; --bg: #000; --surface: #111; --text: #00ff9d; } .btn-primary { background: var(--primary); color: #000; } .card { background: var(--surface); border: 2px…

Continue reading...
swstack

HTML/CSS - 28

HTML/CSS - 28: Performance Optimization Deep Dive Learn how to make your websites load faster and score high on Core Web Vitals. <img src="large-image.jpg" alt="Example" width="800" height="500" loading="lazy">

Continue reading...