Skip to content

west midlands | May-2025| Jabir Adam | Wireframe #597

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
49 changes: 42 additions & 7 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,58 @@
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
Let's explore three concepts.
</p>
</header>
<main>


<article>
<img src="placeholder.svg" alt="" />

Choose a reason for hiding this comment

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

Can you review the required attributes of the <img> element? You're missing an important one.

<h2>Title</h2>
<h2> What is the purpose of a README file?</h2>
<p>
Copy link

@jenny-alexander jenny-alexander May 30, 2025

Choose a reason for hiding this comment

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

If you review the exercise requirements, you'll see that the wireframe has the title description centered on the page. As much as possible, try to always create your webpage so it is similar to the wireframe!

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A README file serves as an introductory document for a software project or dataset, providing users with essential information about what the project does, how to use it, and how to get started. It's a crucial piece of documentation that helps users understand the project's purpose,
requirements, and installation/usage instructions


</p>
<a href="">Read more</a>

Choose a reason for hiding this comment

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

The 'Read More' button should bring to the user to a web page that gives more information about the article.

</article>
</main>
<footer>




<article>
<img src="placeholder.svg" alt="" />

Choose a reason for hiding this comment

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

Can you review the <img> element and the alt attribute?

<h2>What is the purpose of a wireframe?</h2>
<p>

A wireframe's purpose is to visually represent the layout and structure of a webpage, app, or other digital product, focusing on functionality and user experience before detailed design and development. It acts as a blueprint, outlining how content and elements will
be placed and how they interact with the use


</p>
<a href="">Read more</a>

Choose a reason for hiding this comment

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

The 'Read More' button should bring to the user to a web page that gives more information about the article.

</article>




<article>
<img src="placeholder.svg" alt="" />

Choose a reason for hiding this comment

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

Can you review the <img> element and the alt attribute?

<h2>What is a branch in Git?</h2>
<p>
A branch in Git is simply a lightweight movable pointer to one of these commits. The default branch name in Git is master . As you start making commits, you're given a master branch that points to the last commit you made. Every time you commit,
the master branch pointer moves forward automatically
</p>
<a href="">Read more</a>

Choose a reason for hiding this comment

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

The 'Read More' button should bring to the user to a web page that gives more information about the article.

</article>
</main>


<footer >

Choose a reason for hiding this comment

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

Your footer shows valuable information (i.e. your name), however the requirement for the footer is:
The page footer is fixed to the bottom of the viewport.

Can you fix this? If you're not sure what 'fixed to the bottom of the viewport mean', try searching it via web search or asking chatGPT.

<p>
This is the default, provided code and no changes have been made yet.
it's all done by Jabir Adam
</p>
</footer>
</body>
Expand Down
9 changes: 8 additions & 1 deletion Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ main {
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
position: fixed;

bottom: 0;
text-align: center;
background-color: rgb(239, 133, 133);
}
/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Expand Down Expand Up @@ -87,3 +88,9 @@ article {
grid-column: span 3;
}
}
h1{
text-align: center;
background-color: rgb(114, 147, 247);


}