generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 388
London | 26-ITP-Jan | Shuheda Begum | Sprint 1 | Wireframe #956
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
codebyshay
wants to merge
14
commits into
CodeYourFuture:main
Choose a base branch
from
codebyshay:feature/wireframe
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+190
−87
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d46f7c2
Completed Wireframe
codebyshay bf9cdd6
Box added around 'read more' link
codebyshay 1dfe9d3
Fixed footnote - visble all the time
codebyshay 1434834
Formatted Document
codebyshay 14bc8aa
Saved image locally
codebyshay 049a62f
Saved image locally
codebyshay 1f3fe0a
Saved image locally
codebyshay f9bbfb5
Amended image link
codebyshay 3c85993
Amended <img> alt
codebyshay e6453b3
Merge branch 'CodeYourFuture:main' into feature/wireframe
codebyshay 9fb20af
Merge branch 'feature/wireframe' of https://github.com/codebyshay/Mod…
codebyshay be75701
Link checked
codebyshay d4ea4de
Read more and footnote
codebyshay 5bfca54
WireFrameImage
codebyshay 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
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,94 @@ | ||
| <!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> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.svg" alt="" /> | ||
| <h2>Title</h2> | ||
|
|
||
| <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> | ||
| <!-- Page Header --> | ||
| <header class="page-header"> | ||
| <h1>Featured Articles</h1> | ||
| <p>Explore our most recent and highlighted articles in one place.</p> | ||
| </header> | ||
|
|
||
| <!-- Main Content --> | ||
| <main class="content"> | ||
| <!-- Featured Article --> | ||
| <article class="featured"> | ||
| <div class="image"> | ||
| <img src="ReadMeImages.png" | ||
| alt="Read me Article image" /> | ||
| </div> | ||
| <div class="text"> | ||
| <h2>What is the purpose of a README file?</h2> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| A README file serves as the main introduction to a project and helps users and developers quickly understand | ||
| what it is, what it does, and how to use it. It typically explains the project’s purpose and key features, | ||
| provides basic instructions for installation or usage, and offers important details such as dependencies or | ||
| setup requirements. A README may also include contribution guidelines, licensing information, and contact | ||
| details, making it easier for others to collaborate and maintain the project. Overall, the purpose of a README | ||
| file is to clearly communicate essential information so the project is easy to understand, use, and contribute | ||
| to. | ||
| </p> | ||
| <a href="">Read more</a> | ||
| <a href="https://datamanagement.hms.harvard.edu/collect-analyze/documentation-metadata/readme-files">Read | ||
| more</a> | ||
| </div> | ||
| </article> | ||
|
|
||
| <!-- Two-column Articles --> | ||
| <section class="grid"> | ||
| <article class="card"> | ||
| <div class="image"> | ||
| <img | ||
| src="WireFrameImage.png" | ||
| alt="Wire Frame Article image" /> | ||
| </div> | ||
| <div class="text"> | ||
| <h3>What is the purpose of a wireframe?</h3> | ||
| <p> | ||
| The purpose of a wireframe is to provide a visual blueprint of a website or application before it is fully | ||
| designed or built. It outlines the layout, structure, and placement of elements such as headers, content | ||
| areas, images, and navigation without focusing on colors or detailed styling. Wireframes help designers, | ||
| developers, and stakeholders understand how content will be organized, identify usability issues early, and | ||
| plan functionality efficiently. By focusing on structure rather than appearance, wireframes save time, | ||
| reduce misunderstandings, and guide the development process. | ||
| </p> | ||
| <a href="https://www.geeksforgeeks.org/websites-apps/purpose-of-wireframing-in-web-design-process/">Read | ||
| more</a> | ||
| </div> | ||
| </article> | ||
|
|
||
|
|
||
| <article class="card"> | ||
| <div class="image"> | ||
| <img | ||
| src="GitBranchesImage.png" | ||
| alt="Git Branches Article image" /> | ||
| </div> | ||
| <div class="text"> | ||
| <h3>What is a branch in Git?</h3> | ||
| <p> | ||
| A branch in Git is a separate line of development that allows you to work on changes without affecting the | ||
| main codebase. It lets you create and test new features, fix bugs, or experiment with ideas independently | ||
| from the main branch (often called main or master). Branches make it easy to manage multiple versions of a | ||
| project at the same time and safely merge completed work back into the main code when it is ready. | ||
| </p> | ||
| <a href="https://www.w3schools.com/git/git_branch.asp">Read more</a> | ||
| </div> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| </p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
| </section> | ||
| </main> | ||
|
|
||
| <!-- Footer --> | ||
| <footer class="footer"> | ||
| <p> | ||
| © 2026 Featured Articles. All rights reserved. | ||
| </p> | ||
| </footer> | ||
| </body> | ||
|
|
||
| </html> |
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
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.
There are two footer classes defined. It's easier to maintain and avoid conflicts if only one footer class is defined.