swstack

swstack (102)

swstack

HTML/CSS - 2

HTML/CSS - 2: Headings & Paragraphs Now let's build a simple "About Me" page. Use different heading sizes (<h1> to <h6>) and write a few paragraphs about yourself or a fictional character. <h1>About Me</h1> <h2>My Background</h2> <p>This is a paragraph about myself...</p> <h3>My Hobbies</h3> <p>Another…

Continue reading...
swstack

HTML/CSS - 1

HTML/CSS - 1: Your First HTML Page Create your very first HTML page! Your task is to add a big heading that says "Hello, World!" using an <h1> tag. Then try adding a subtitle with <h2>. <h1>Hello, World!</h1> <h2>This is my first webpage</h2>

Continue reading...
swstack

Developer Setup

Before you can build real projects efficiently, you need a good development environment on your computer. A solid setup saves you hours of frustration later. Think of it as preparing your workspace before starting a big project — the right tools make everything smoother. The…

Continue reading...
swstack

Testing Debugging

Even the best code has mistakes. Testing and debugging are the skills that help you find and fix problems quickly so your apps work reliably. Think of testing as checking your work before showing it to others, and debugging as detective work when something goes…

Continue reading...
swstack

APIs Backend

Most modern apps need to send and receive data between the frontend (what users see) and the backend (where the work happens). That communication usually happens through APIs. Think of an API as a waiter in a restaurant — it takes your request, goes to…

Continue reading...