Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3901b66
created additional two article element inside the Main elememts
Tobias-Amaechina May 31, 2026
4ffae20
updating the paragraph of the Header element
Tobias-Amaechina May 31, 2026
0931354
updating the Title in h2 elemnt for the first article -Readme file
Tobias-Amaechina May 31, 2026
b529313
updating the article summary in the paragraph element
Tobias-Amaechina May 31, 2026
c9b97c3
adding the absolute path for the href element for readme read more
Tobias-Amaechina May 31, 2026
a33cad3
adding the path to the unique image for the readme diagram and also …
Tobias-Amaechina May 31, 2026
183c31e
adding the Readme.png file
Tobias-Amaechina May 31, 2026
1842229
adding the h2 heading for the second article on Wireframe
Tobias-Amaechina May 31, 2026
3518a91
adding the summary about Wireframe on the paragraph element
Tobias-Amaechina May 31, 2026
e3b64ff
adding the absolute path for the href link in the wireframe article …
Tobias-Amaechina May 31, 2026
c3c0cdc
replacing the placeholder with the actual path to the wireframe uniq…
Tobias-Amaechina May 31, 2026
baa0fd8
providing an alt message for accesibilty compliance
Tobias-Amaechina May 31, 2026
cb8ac9d
attaching the unique file for wireframe updating the correct name to…
Tobias-Amaechina May 31, 2026
de3ffd6
updates the h2 element for the article on Git branch
Tobias-Amaechina May 31, 2026
16a9f4b
updating the summary of the article Git branch on the paragraph element
Tobias-Amaechina May 31, 2026
ce52dee
providing the absolute path to href link element for read more on a G…
Tobias-Amaechina May 31, 2026
e49be46
replacing the placeholder with the path to Unique image for the Git …
Tobias-Amaechina May 31, 2026
d137024
adding the git_branch.png file
Tobias-Amaechina May 31, 2026
a347432
updated the Footer section
Tobias-Amaechina May 31, 2026
d046c14
removed the small element from the footer section
Tobias-Amaechina May 31, 2026
5f92d2a
closing tag for address provided and the extra quotaion mark removed…
Tobias-Amaechina May 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Wireframe/Readme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/Wireframe1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/git_branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 30 additions & 7 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,47 @@
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
An Article about the purpose of a readme file ,and a wireframe,
and also on what a Git branch is and how to use it.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="Readme.png" alt="A readme diagram"/>
<h2>What is the Purpose of a Readme File?</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
The purpose of a readme file is to provide,
information about a project.
</p>
<a href="">Read more</a>
<a href="https://en.wikipedia.org/wiki/README">Read more</a>
</article>
<article>
<img src="Wireframe1.png" alt="A Wireframe diagram"/>
<h2>What is the Purpose of a Wireframe?</h2>
<p>
<strong>In short</strong>, a wireframe’s purpose is to visualize the skeleton of a digital product,
helping teams plan, test, and communicate ideas efficiently before moving to detailed design.
</p>
<a href="https://www.productplan.com/glossary/wireframe">Read more</a>
</article>
<article>
<img src="git_branch.png" alt="A Git branch diagram"/>
<h2>What Is a Git Branch?</h2>
<p>
In Git, a <em>branch</em> 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.</p>
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github">Read more</a>
</article>
</main>
<footer>

<p>
This is the default, provided code and no changes have been made yet.
Written by Tobias Amaechina.
</p>
<address>
<a href="mailto:amaechina.tobias@gmail.com">Contact Tobias</a>
</address>
</footer>
</body>
</html>
Loading