generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 357
Birmingham| SEP_2025| Hadi Vahidi | Sprint 1 | Feature wireframe #755
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 all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f706e7f
change the title
HadiVahidi20 001c9c7
updated the tite and first article
HadiVahidi20 9a33bde
fixed the footer css,
HadiVahidi20 d517aad
more CSS stayle added to img and footer
HadiVahidi20 f3aeed0
Final CSS update: added padding and margin to make the footer backgro…
HadiVahidi20 9fd21ac
chage som text color from gray to black for better Accessibility
HadiVahidi20 f60fba2
fixed the footer to the end of viewport by adding position to CSS file
HadiVahidi20 897b9fd
Create images
HadiVahidi20 08e9b2e
added 3 images for articles
HadiVahidi20 12f983f
upload 3 images and change the photo of each article
HadiVahidi20 16023e3
add three new html article to link to the readmore bottun
HadiVahidi20 447545c
edit the image size and css
HadiVahidi20 c01c0f9
Final update: added padding to main to prevent footer from overlappin…
HadiVahidi20 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 |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Web Development Essentials</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body> | ||
|
|
||
| <div class="container"> | ||
| <h1>What is a Branch in Git</h1> | ||
| <p> | ||
| A branch in Git is like a separate workspace or version of a project. | ||
| It allows developers to work on new features, fixes, or experiments without affecting the main code. | ||
| The main branch is usually called <strong>main</strong> or <strong>master</strong>. | ||
| </p> | ||
|
|
||
| <p> | ||
| When you create a branch, you can make changes freely. | ||
| Later, if everything works well, you can merge the branch back into the main branch. | ||
| This helps teams work together safely and keeps the main code stable. | ||
| </p> | ||
|
|
||
| <p> | ||
| Branches are useful for organizing work, testing new ideas, and managing different versions of a project. | ||
| They make it easier to collaborate without breaking the main code. | ||
| </p> | ||
|
|
||
| <p> | ||
| In short, a branch in Git helps developers work independently, test changes safely, | ||
| and keep the project organized. | ||
| </p> | ||
|
|
||
| <p> | ||
| <a href="index.html"> | ||
| Go Back | ||
| </a> | ||
| </p> | ||
| </div> | ||
| <footer> | ||
| <p> | ||
| this is my first web page on code your future | © Hadi Vahidi. | ||
| </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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,33 +1,51 @@ | ||
| <!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> | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Web Development Essentials</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body> | ||
| <header class="header"> | ||
| <h1>Web Development Essentials</h1> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| 3 First Essentials of web developing. | ||
| </p> | ||
| <a href="">Read more</a> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| </p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="./assets/readmefile.png" alt="readme image" /> | ||
| <h2>What is the purpose of a README file?</h2> | ||
| <p> | ||
| A README file provides an overview of a project, explaining what it does, how to install and use it, and who created it. It can also include guidelines for contributing, contact information, and links to additional resources. Essentially, it helps users and developers quickly understand and work with the project. | ||
| </p> | ||
| <a href="readmeArticle.html">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="./assets/wireframe.png" alt="wireframe image" /> | ||
| <h2>What is the purpose of a wireframe? </h2> | ||
| <p> | ||
| A <span>wireframe</span> is a visual blueprint of a website or app that shows the layout and structure of content and interface elements before design or development begins. Its purpose is to plan the placement of text, images, buttons, and navigation, ensuring a clear and logical user experience. Wireframes also serve as a communication tool for designers, developers, and stakeholders, helping them agree on the structure early and make changes easily, which saves time and resources in the design process. | ||
|
|
||
| </p> | ||
| <a href="wireframe.html">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="./assets/branch.png" alt="branch image" /> | ||
| <h2>What is a branch in Git?</h2> | ||
| <p> | ||
| A <span>branch</span> in Git is a separate line of development within a repository. It allows you to work on new features, bug fixes, or experiments <span> without affecting the main codebase</span> (usually called main or master). Each branch can have its own commits, so you can make changes safely and independently. Once the work on a branch is complete, it can be merged back into the main branch, incorporating the new changes. | ||
|
|
||
| In short, a branch is like a parallel workspace for development, helping teams organize work and collaborate efficiently. | ||
| </p> | ||
| <a href="brach.html">Read more</a> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| this is my first web page on code your future | © Hadi Vahidi. | ||
| </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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Purpose of a README File</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body> | ||
| <div class="container"> | ||
| <h1>Purpose of a README File</h1> | ||
|
|
||
| <p> | ||
| A README file is a simple text file that explains important information about a project. | ||
| It usually comes with software, code, or any kind of digital project. The main purpose of a README | ||
| file is to help users and developers understand what the project is about and how to use it. | ||
| </p> | ||
|
|
||
| <p> | ||
| A good README file typically contains several parts. First, it introduces the project and explains | ||
| its goals. Second, it may provide instructions on how to install or run the project. Third, it | ||
| can explain the structure of the project, showing where important files are located. Finally, | ||
| it can include information about how to contribute to the project and who created it. | ||
| </p> | ||
|
|
||
| <p> | ||
| Having a README file makes it easier for others to start using a project without confusion. | ||
| It is also helpful for the project owner as it documents the work clearly. Overall, a README | ||
| file is a small but very important document for communication and guidance. | ||
| </p> | ||
|
|
||
| <p> | ||
| In short, a README file helps users understand a project, guides them on how to use it, | ||
| and provides useful information for anyone who wants to contribute. | ||
| </p> | ||
|
|
||
|
|
||
| <p> | ||
| <a href="index.html"> | ||
| Go Back | ||
| </a> | ||
| </p> | ||
| </div> | ||
| <footer> | ||
| <p> | ||
| this is my first web page on code your future | © Hadi Vahidi. | ||
| </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
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 |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Purpose of a Wireframe</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body> | ||
| <div class="container"> | ||
| <h1>Purpose of a Wireframe</h1> | ||
|
|
||
| <p> | ||
| A wireframe is a simple visual guide that shows the basic structure of a website or application. | ||
| It usually uses simple shapes and lines to represent different parts of a page, like headers, | ||
| buttons, images, and text areas. Wireframes do not show colors or detailed design; they focus on layout and functionality. | ||
| </p> | ||
|
|
||
| <p> | ||
| The main purpose of a wireframe is to plan and organize a project before full design and development begin. | ||
| It helps designers, developers, and clients understand how the page will work and where each element should be placed. | ||
| Wireframes also make it easier to find problems early, saving time and effort later. | ||
| </p> | ||
|
|
||
| <p> | ||
| Wireframes are useful for communication. They allow teams to discuss ideas clearly and make decisions | ||
| about the structure of the website or app without getting distracted by colors, fonts, or images. | ||
| </p> | ||
|
|
||
| <p> | ||
| In short, a wireframe helps organize a project, improve communication, and plan the layout efficiently. | ||
| </p> | ||
|
|
||
|
|
||
| <a href="index.html"> | ||
| Go Back | ||
| </a> | ||
|
|
||
| </div> | ||
| <footer> | ||
| <p> | ||
| this is my first web page on code your future | © Hadi Vahidi. | ||
| </p> | ||
| </footer> | ||
|
|
||
| </body> | ||
| </html> |
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.
One of the acceptance criteria for this task is making sure the footer is fixed to the viewport. Do you know what that means? Can you fix that?