Skip to content
Binary file added Wireframe/branch-in-git.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 61 additions & 12 deletions Wireframe/index.html

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The top article's title and description don't match the wireframe alignment. Can you review the wireframe and make the necessary changes?

Image

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The title and description match the wireframe now.

Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,80 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wireframe</title>
<title>Wireframe.</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Wireframe</h1>
<h1>Wireframe Web Project </h1>
<p>
This is the default, provided code and no changes have been made yet.
Learn about key tools every developer uses: README files, wireframes,
and Git branches.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<div>
<img src="readme.jpg" alt=Screenshot of a README file example showing project documentation" />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a typo in your <img> tag. Can you find it and fix it?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@chibu0070 - the typo still exists on line 21 above. Can you find it within the 'alt' portion of the img tag?

<h2>What is the purpose of a README file?</h2>
<p>
A README file introduces a project, explaining what it does, how
to install it, and how to use it. It helps others understand your
project quickly.
</p>
<a
href="https://www.makeareadme.com/"
target="_blank"
rel="noopener noreferrer"
>Read more</a
><br>
</div>
<br>
</article>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The bottom two article's titles don't quite line up horizontally. Can you review and ensure that their alignment matches the wireframe.
Wireframe requirements: https://github.com/CodeYourFuture/Module-Onboarding/tree/main/Wireframe#wireframe

Image

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The alignment is still not quite right. Can you find a way to fix it? Perhaps you can research online how to do this with CSS?

<article>
<img src="wireframed1.png" alt="Example of a website wireframe showing layout structure" />
<div>
<h2>What is the purpose of a wireframe?</h2>
<p>
A wireframe is a visual guide that outlines a webpages structure.
Designers and developers use it to plan layouts before adding
content or styling.
</p>
<a
href="https://careerfoundry.com/en/blog/ux-design/what-is-a-wireframe/"
target="_blank"
rel="noopener noreferrer"
>Read more</a
>
</div>
<br>
</article>

<article>
<img src="branch-in-git.jpg" alt="Diagram showing Git branches and their relationships" />
<div>
<h2>What is a branch in Git?

</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A Git branch allows developers to work on new features or fixes
separately from the main code. This keeps the main project stable
while updates are tested.
</p>
<a href="">Read more</a>
</article>
<a
href="https://www.atlassian.com/git/tutorials/using-branches"
target="_blank"
rel="noopener noreferrer"
> Read more </a>
</div>
<br>
</article>
</section>
</main>

<footer>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The footer requirements are:
The page footer is fixed to the bottom of the viewport.

Do you know what 'fixed to the bottom of the viewport' means? It means that the footer is always visible no matter where you scroll to on the page. Right now, when I scroll to the top of the page, the footer disappears.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good job updating your footer.

<p>
This is the default, provided code and no changes have been made yet.
</p>
<p>&copy; 2025 CodeYourFuture Chibuikem Okwu</p>
</footer>
</body>
</html>
Binary file added Wireframe/readme.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 32 additions & 3 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,23 @@ svg {
Setting the overall rules for page regions
https://www.w3.org/WAI/tutorials/page-structure/regions/
*/
header{
text-align: center ;
}
main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
padding-bottom: 3em;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
text-align: center;
width: 100%;

}
/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Expand All @@ -77,13 +86,33 @@ Keeping things orderly and separate is the key to good, simple CSS.
article {
border: var(--line);
padding-bottom: var(--space);
text-align: left;
text-align: center;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
> * {
grid-column: 2/3;
}
> img {
grid-column: span 3;
grid-column: 2/3;
}
}
article {
border: var(--line);
padding-bottom: var(--space);
text-align: left;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
> {
grid-column: 2/3;
}
> img {
grid-column: 2/3;
}
}
article > div {
display: grid;
grid-template-columns: 1fr ;
align-items: center;
gap: var(--space);
margin-top: var(--space);
}
Binary file added Wireframe/wireframed1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.