Welcome to Intro to Programming

Here we will learn about some introductory web development concepts.

Readme image

The purpose of a README file

A README file is text file often included with a software program or code package which provides the reader with information they may need to use the software, such installation instructions.

Read more about README files
Wireframe image

The purpose of a wireframe

A wireframe is used to express the layout of a visual medium such as a newspaper, or web page. It helps designers and programmers to get a simple overview of a design.

Read more about wireframing
Branch image

What is a Git branch

A git branch is a copy of the code in a git repository. Branches are created so that developers can work separately on specific features. Once a feature is completed it is merged into main. If the creation of a feature is not successful, for example there are too many bugs, the branch can be deleted without affecting the main branch.

Read more about Git