Skip to content
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
35 changes: 30 additions & 5 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,38 @@ <h1>Wireframe</h1>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="https://docs.github.com/assets/cb-69181/images/help/repository/headings-toc.png" alt="read.md img"/>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Providing meaningful alt text is important because it ensures images are accessible to people using screen readers and also helps when images
fail to load, giving users essential context about the content or function of the image.

Can you think of a more descriptive alt value to every image?

<h2>Read Me File</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A README file explains what a project is and how to use it. It’s usually the first file people read when they open a
project, especially in software development.
</p>
<a href="">Read more</a>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read more</a>
</article>
<article>
<img src="https://cdn-images.visual-paradigm.com/handbooks/agile-handbook/wireframe/02-newspaper-site-wireframe-example.png" alt="wireframe img"/>
<h2>What is the purpose of a wireframe?</h2>
<p>
A wireframe is a simple visual layout of a website, app, or software interface. Its purpose is to show the structure and
arrangement of content before detailed design and development begin.
</p>
<a href="https://balsamiq.com/blog/what-are-wireframes/">Read More</a>
</article>
<article>
<img src="https://nulab.com/static/2b1b3450c0069d0cbd97d70e48c7a81c/5a190/02.png" alt="Git Branch img"/>
<h2>What is a branch in Git?</h2>
<p>
A branch in Git is a separate line of development that lets you work on changes without affecting the main project.

Think of it like creating a copy of your project where you can safely:<br>

Add new features<br>
Fix bugs<br>
Test ideas<br>

while the original code remains unchanged.
Comment on lines +41 to +47
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Using <br> to force line break is a poor practice.

Can you find a more suitable HTML elements, with or without using CSS, to list the three phrases on line 43-45?

</p>
<a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches">Read More</a>
</article>
</main>
<footer>
Expand Down
1 change: 1 addition & 0 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ main {
footer {
position: fixed;
bottom: 0;
width:100%;
text-align: center;
}
/* ====== Articles Grid Layout ====
Expand Down
Loading