generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 340
WEST MIDLANDS | ITP-September-2025 | MUSTAF ASANI | Sprint 1 | Wireframe #888
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
asaniDev
wants to merge
17
commits into
CodeYourFuture:main
Choose a base branch
from
asaniDev: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.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
236bda0
changed paragraph in header
plaetor 445a452
created two more articles
plaetor 40ea0d7
added information about readme files
plaetor 37ea881
added information about wireframes
plaetor 8a2b7e9
added information on git branches
plaetor 43e6eb6
added css to center h1 and p in header
plaetor 882279a
added live links and target attributes to the anchors
plaetor 8f74438
centered p in footer and added images
plaetor 9c3c2b9
added iage to readme article
plaetor eb91367
left aligned second and third articles, reformated the first paragrap…
plaetor e215723
changed paragraph in footer
plaetor 5de20b0
applied prettier formatter to web document
plaetor 5507c14
centred footer
plaetor 260c70a
left aligned the paragraphs, used prettier formatter on the file
plaetor 10a6459
fixed alignment of paragraph in footer
plaetor 11a8753
made the footer text stick to the bottom of the viewport
plaetor a147383
added white background for contrast
plaetor 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,23 +10,78 @@ | |
| <header> | ||
| <h1>Wireframe</h1> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| This web page is a brief guide on some of the terms we use in coding. I | ||
| will explain in my own words what the main terms mean and how they apply | ||
| to our code. | ||
| </p> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.svg" alt="" /> | ||
| <h2>Title</h2> | ||
| <img | ||
| src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" | ||
| alt="" | ||
| /> | ||
| <h2>Purpose of a README File</h2> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| A README file is a document that provides information about a project. | ||
| It typically includes details such as the project's purpose, how to | ||
| install and use it, and any other relevant information that users or | ||
| developers might need. The README file is often the first thing that | ||
| users see when they visit a project's repository, so it's important to | ||
| make it clear and informative. | ||
| </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" | ||
| >More Info</a | ||
| > | ||
| </article> | ||
| <article class="second-line"> | ||
| <img | ||
| src="https://balsamiq.com/assets/learn/articles/wireframe-example-plain.png" | ||
| alt="" | ||
| /> | ||
| <h2>Wireframe</h2> | ||
| <p> | ||
| A wireframe is a visual representation of a web page or application. | ||
| It serves as a blueprint for the design and layout of the page, | ||
| showing where elements like text, images, and buttons will be placed. | ||
| Wireframes are often created in the early stages of a project to help | ||
| designers and developers plan the structure and functionality of the | ||
| page before moving on to more detailed design work. | ||
| </p> | ||
| <a | ||
| href="https://www.productplan.com/glossary/wireframe/" | ||
| target="_blank" | ||
| >More Info</a | ||
| > | ||
| </article> | ||
| <article class="second-line"> | ||
| <img | ||
| src="https://wac-cdn.atlassian.com/dam/jcr:a905ddfd-973a-452a-a4ae-f1dd65430027/01%20Git%20branch.svg?cdnVersion=2723" | ||
| alt="" | ||
| /> | ||
| <h2>Git Branch</h2> | ||
| <p> | ||
| A branch in Git is a separate line of development within a project. It | ||
| allows developers to work on new features or bug fixes without | ||
| affecting the main codebase. When a branch is created, it starts as a | ||
| copy of the main branch (usually called "main" or "master"). | ||
| Developers can make changes in their branch and then merge those | ||
| changes back into the main branch when they're ready. | ||
| </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" | ||
| >More Info</a | ||
| > | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| This page was created as a simple example of a wireframe and to explain | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At times the footer text overlaps with the page content which is difficult to read - can you think of how to fix this while keeping the footer at the bottom of the viewport? |
||
| some common coding terms. It is not intended to be a complete guide but | ||
| rather a starting point for understanding these concepts. | ||
| </p> | ||
| </footer> | ||
| </body> | ||
|
|
||
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.
You can leave the "alt" attribtute blank if the image is purely decorative. I think that is the case here, so you don't need to change it, but just keep that in mind.