You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Wireframe/index.html
+29-8Lines changed: 29 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -8,25 +8,46 @@
8
8
</head>
9
9
<body>
10
10
<header>
11
-
<h1>Wireframe</h1>
11
+
<h1>Understanding the developmental cycle of a product</h1>
12
12
<p>
13
-
This is the default, provided code and no changes have been made yet.
13
+
A simple website made to explain how README file + WIREFRAME + GIT branching complement each other in developmental workflow for a digital product.
14
14
</p>
15
15
</header>
16
16
<main>
17
17
<article>
18
-
<imgsrc="placeholder.svg" alt="" />
19
-
<h2>Title</h2>
18
+
<imgsrc="placeholder.svg" alt="Image for wireframe article" />
19
+
<h2>The purpose of a WIREFRAME</h2>
20
20
<p>
21
-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22
-
voluptates. Quisquam, voluptates.
21
+
From a product developmental perspective wireframing is essentially a blueprint, an imagie file sent from a client, laying out the structure of a webpage for example, whether it be content placement, naviagation, basic interactions. Then from that skeletal blueprint developers take over and build the product itself.
<imgsrc="placeholder.svg" alt="Image for README article" />
28
+
<h2>Purpose of a README file</h2>
29
+
<p>
30
+
Now that you have your website layout, first thing you have to read is the README file. In there you will usually find information about the project, guidelines, requirements, licenses etc. The file acts as an evolving filing overview of the product.
<imgsrc="placeholder.svg" alt="Image for GIT branch article" />
37
+
<h2>Purpose of a branch in GIT</h2>
38
+
<p>
39
+
And finally we have branching. As in any collaborative projects, especially if the team is spanning multiple locations, safety - security - support becomes very important. That's where GIT and GITHUB come in. Branching allows you to copy parts of the main code, to work on it independently without accidentally corrupting the main code, and to collaborate effectively on any changes made with your team. Once copy branch has been approved it gets merged into the main code.
0 commit comments