From fdeecfb64fc08f47e2bd2c9913515973ffef236b Mon Sep 17 00:00:00 2001
From: ofonimeedak
Date: Sat, 17 Jan 2026 06:24:15 +0000
Subject: [PATCH 1/4] all about readMe.md file
---
Wireframe/readMe.html | 56 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
create mode 100644 Wireframe/readMe.html
diff --git a/Wireframe/readMe.html b/Wireframe/readMe.html
new file mode 100644
index 000000000..896b6f4d7
--- /dev/null
+++ b/Wireframe/readMe.html
@@ -0,0 +1,56 @@
+
+
+
+
+
+ Document
+
+
+
+ README FILE
+ What is the Purpose of a ReadMe
+
+
+
+ Introduction
+
+ According to wikipedia, a A README file contains descriptive information
+ about the content of a directory in which the file is located. The scope
+ of the information generally includes the files of the directory, and
+ may include descendant directories, or even the full directory tree. The
+ name is intended to draw a user's attention to important and
+ orientational information about the directory content
+
+
+ The Purpose of ReadMe
+
+ A README file's purpose is to serve as the entry point and overview for
+ a software project, providing essential information like what the
+ project does, why it's useful, and how to install, use, or contribute to
+ it, helping users and new developers quickly understand and get started
+ with the code. It acts as a project's homepage, reducing friction and
+ guiding collaboration by centralizing documentation, installation steps,
+ contribution guidelines, and license details in one easily accessible
+ file, usually in the project's root directory.
+
+
+
+
+
+ Without a proper read me, collaborators especially on open source
+ project find it difficult to understand and contribute to the project in
+ general
+
+
+
+
+
+
From 69c28cd1a27883d4f8e8a265f78c08b72184be8d Mon Sep 17 00:00:00 2001
From: ofonimeedak
Date: Sat, 17 Jan 2026 06:52:18 +0000
Subject: [PATCH 2/4] wireframe and branching
---
Wireframe/readMe.html | 74 +++++++++++++++++++++++++++++++++++++------
1 file changed, 65 insertions(+), 9 deletions(-)
diff --git a/Wireframe/readMe.html b/Wireframe/readMe.html
index 896b6f4d7..7530cedf9 100644
--- a/Wireframe/readMe.html
+++ b/Wireframe/readMe.html
@@ -12,7 +12,7 @@ README FILE
- Introduction
+ Introduction
According to wikipedia, a A README file contains descriptive information
about the content of a directory in which the file is located. The scope
@@ -22,7 +22,7 @@
Introduction
orientational information about the directory content
- The Purpose of ReadMe
+ The Purpose of ReadMe
A README file's purpose is to serve as the entry point and overview for
a software project, providing essential information like what the
@@ -33,17 +33,64 @@
The Purpose of ReadMe
contribution guidelines, and license details in one easily accessible
file, usually in the project's root directory.
+
+
+ Without a proper read me, collaborators especially on open source
+ project find it difficult to understand and contribute to the project
+ in general
+
+
+
+
+
+ What is the Purpose of Wireframes
+
+ Wireframes are skeleton of the web. This skeleton is a two-dimensional
+ depiction of a page’s interface that shows the spacing of elements on
+ the page, how content is prioritized, what functionalities are
+ available, and how users will interact with the site. They also play a
+ vital role in connecting information architecture to the visual
+ aspects of the design by showing pathways between the various pages.
+ Wireframes are intentionally void of color, graphics and stylized
+ fonts.
+
+
+ Wireframing is a quick and effective way to identify usability issues
+ early on in your design process
+
+
-
-
- Without a proper read me, collaborators especially on open source
- project find it difficult to understand and contribute to the project in
- general
-
-
+
+
+
+
+ What is Branch in Git
+
+ A Git branch is a separate workspace used to make changes without affecting the main project. Once the work is complete, the changes can be merged back into the main or master branch.
+
+Branches make it easy to:
+
+
+ -
+ Manage different tasks or features independently
+
+ -
+ Test changes without affecting live code
+
+ -
+ Collaborate with others efficiently
+
+
+
+
+
+ Without branching developers will not have the flexibility of making changes and contributing to the main branch after a pull request
+
+