Basic of Web Development

Web development is the process of creating and maintaining websites and web applications.
Good web developers, they have a strong understanding of Git, README files and wireframes(Design) before the actual development process.
This articles introduce the purpose of README files,wireframes and how to create branches in Git.

README file illustration

Purpose of README file

README files to communicate important information about a project for users and developers. A README is often the first item a visitor will see when visiting your repository. From the readme, users can easily understand what your project is about, how to use it.

README files typically include information on:

Read more
Wireframe Example

Purpose of a wireframe

Wireframe graphic representation of a website, mobile app, or other digital interface that highlights the overall structure and layout of the design without going into specifics like colors, fonts, or images. A wireframe is a product outline that shows what interface elements will be present on important pages. Wireframes are used to:

Read more
branch in git

Branch in Git

In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code.

Common Reasons to Create a Branch:

Read more