Skip to content

Commit 0dd24d5

Browse files
authored
Revise content and structure in index.html
Added three articles, with links. Also a footnote with a link to my github profile.
1 parent 72fe02b commit 0dd24d5

1 file changed

Lines changed: 29 additions & 8 deletions

File tree

Wireframe/index.html

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,46 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>Understanding the developmental cycle of a product</h1>
1212
<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.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img src="placeholder.svg" alt="Image for wireframe article" />
19+
<h2>The purpose of a WIREFRAME</h2>
2020
<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.
2322
</p>
24-
<a href="">Read more</a>
23+
<a href="https://en.wikipedia.org/wiki/Website_wireframe">Read more</a>
2524
</article>
25+
26+
<article>
27+
<img src="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.
31+
</p>
32+
<a href="https://en.wikipedia.org/wiki/README">Read more</a>
33+
</article>
34+
35+
<article>
36+
<img src="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.
40+
</p>
41+
<a href="https://en.wikipedia.org/wiki/Branching_(version_control)">Read more</a>
42+
</article>
43+
44+
45+
46+
2647
</main>
2748
<footer>
2849
<p>
29-
This is the default, provided code and no changes have been made yet.
50+
If you liked my website contact me directly on <a href="https://github.com/khaliun-dev">khaliun-dev</a>
3051
</p>
3152
</footer>
3253
</body>

0 commit comments

Comments
 (0)