Title
+ +What is the purpose of a README file?
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A README file explains what a project is, how to install it, how to + run it, and how to use it. It often includes setup steps, commands, + and helpful links so other people (and future you) can understand the + project quickly.
- Read more + Read more +What is the purpose of a wireframe?
++ A wireframe is a simple layout plan for a webpage. It shows where + content goes (header, sections, cards, buttons) before writing the + final HTML and CSS. It helps you focus on structure, spacing, and + hierarchy early. +
+ Read more +What is a branch in Git?
++ A Git branch is a separate line of development. You create a branch to + work on a feature or fix without changing the main branch. When your + work is ready, you can merge your branch back into main. +
+ Read more