-
-
Notifications
You must be signed in to change notification settings - Fork 503
London | 26-ITP-May | Russom Gebremeskel | Sprint 2 | Wireframe #1364
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
Closed
Closed
Changes from 19 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
8edc729
Individual article created for all three titles
41e3591
Wireframe short description updated
d700d1f
h1 and h2 heading texts centered
6201f8e
Images for each title created
f9c6555
Images contained in one folder called images.
130c42a
Footer can span the entire viewport.
4914d85
Footer description updated with my personal details
44c5b6e
Read more link added for all the articles
b38611a
h1 and h2 text edited
ff29aa3
Made space for the fixed footer according to the wireframe requirements
d4f038d
css lines added to fix the image layout
2e1c926
Read more link display was fixed to stay properly aligned within the …
097ffc4
Added code to make the “Read more” link open in a new tab
1f9c5c4
html and css code formated using prettier
ec49c06
css formated
978604b
Merge branch 'CodeYourFuture:main' into feature/wireframe
russom-g 1a5c0b9
An image deleted
d4a6eee
Merge branch 'feature/wireframe' of https://github.com/russom-g/Modul…
477c3b8
Deleted a photo
91006f7
Images name changed
e6149da
Image name updated
eca97d3
More descriptive alt values added to all images.
7beccbb
Image name corrected
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,33 +1,81 @@ | ||
| <!DOCTYPE html> | ||
| <!doctype html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Wireframe</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
|
|
||
| <body> | ||
| <header> | ||
| <h1>Wireframe</h1> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| </p> | ||
| <h1>Wireframe to Web Code</h1> | ||
| <h2> | ||
| Learn the fundamentals of wireframes, README files, and Git branches in | ||
| modern web development. | ||
| </h2> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.svg" alt="" /> | ||
| <h2>Title</h2> | ||
| <img src="images/README.png" alt="" /> | ||
| <h3>The purpose of a README file</h3> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| A README file, usually written as README.md, is a document that | ||
| provides information about a project. It is commonly found in the root | ||
| folder of repositories, especially on platforms like GitHub. A README | ||
| includes instructions for installing and using the project, along with | ||
| details about its purpose, features, and contribution guidelines. | ||
| Since it is often the first thing users see, it should be clear and | ||
| informative. A good README helps users understand the project and use | ||
| or contribute to it easily. | ||
| </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" | ||
| target="_blank" | ||
| >Read more about README files | ||
| </a> | ||
| </article> | ||
| <article> | ||
| <img src="images/wireframeInB&W.jpg" alt="Wireframe example" /> | ||
| <h3>The purpose of a wireframe</h3> | ||
| <p> | ||
| A wireframe is a simple diagram that shows the basic structure and | ||
| layout of a website or application’s user interface (UI). It displays | ||
| the placement of components and gives an idea of how they will | ||
| function. Wireframes are used in the early stages of design to plan | ||
| layouts, navigation, and user interaction before development starts. | ||
| They help designers and developers understand the interface structure, | ||
| improve communication, save time, and ensure the final design meets | ||
| user requirements effectively and clearly. | ||
| </p> | ||
| <a | ||
| href="https://www.experienceux.co.uk/faqs/what-is-wireframing/" | ||
| target="_blank" | ||
| >Read more about wireframing | ||
| </a> | ||
| </article> | ||
| <article> | ||
| <img src="images/branchGit1.png" alt="" /> | ||
| <h3>The Purpose of Branch in Git</h3> | ||
| <p> | ||
| A branch is a sequence of commits that allows developers to work on | ||
| different versions of a project at the same time. It creates a | ||
| separate line of development from the main codebase, making it easier | ||
| to add features, fix bugs, or test changes safely. After the work is | ||
| completed, the changes can be merged back into the main branch. | ||
| Branches are important in version control systems because they support | ||
| teamwork, improve project management, and reduce errors during | ||
| software development and updates efficiently. | ||
| </p> | ||
| <a | ||
| href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches" | ||
| target="_blank" | ||
| >Read more about branches in Git | ||
| </a> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| </p> | ||
| <p>Russom Gebremeskel | Wireframe | ITP May 2026</p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Providing meaningful
alttext is important because it ensures images are accessible to people using screen readers and also helps when imagesfail to load, giving users essential context about the content or function of the image.
Can you give a more descriptive
altvalue to all images?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking the time to review my code. I have now added more alt descriptive texts to all the images. Thanks