-
-
Notifications
You must be signed in to change notification settings - Fork 546
Birmingham|26-ITP-May|Yonas Gebre|Sprint 2|Wireframe #1412
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
yonasdesbelegebre
wants to merge
10
commits into
CodeYourFuture:main
from
yonasdesbelegebre:articles
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
e565f10
main page developed
9893c24
fix erros
c0cca26
fix errors
1aca3d1
footer styles
d9a251e
footer styles more
953e387
meta description for the SEO
d7b3fd2
ogranized into folders
c4d074d
Merge branch 'CodeYourFuture:main' into articles
yonasdesbelegebre 99d0fc9
fixed broken link and correct format
c81df37
Merge branch 'articles' of https://github.com/yonasdesbelegebre/Modul…
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
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 |
|---|---|---|
|
|
@@ -3,30 +3,81 @@ | |
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta name="description" content="This article provides an introduction to the basics of web development, covering key concepts such as Git, README files, and wireframes. It explains the importance of these tools in the development process and how they contribute to effective project management and communication." /> | ||
| <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>Basic of Web Development </h1> | ||
| <P> | ||
| Web development is the process of creating and maintaining websites and web applications.<br> | ||
| Good web developers, they have a strong understanding of Git, README files and wireframes(Design) before the actual development process.<br> | ||
| This articles introduce the purpose of README files,wireframes and how to create branches in Git. | ||
| </P> | ||
|
|
||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.svg" alt="" /> | ||
| <h2>Title</h2> | ||
|
|
||
| <img src="images/image_readme.png" alt="README file illustration" /> | ||
| <h2>Purpose of README file</h2> | ||
| <p> | ||
| README files to communicate important information about a project for users and developers. | ||
| A README is often the first item a visitor will see when visiting your repository. | ||
| From the readme, users can easily understand what your project is about, how to use it. | ||
| </p> | ||
| <p> | ||
| README files typically include information on:</p> | ||
| <ul> | ||
| <li>What the project does a Project description</li> | ||
| <li>How users can get started with the project Installation instructions</li> | ||
| <li>Usage guidelines</li> | ||
| <li>Contributing guidelines</li> | ||
| <li>License information</li> | ||
| </ul> | ||
|
|
||
| <a href="pages/purpose_readme.html">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="images/image_wireframe.png" alt="Wireframe Example" /> | ||
| <h2>Purpose of a wireframe</h2> | ||
| <p> | ||
| Wireframe graphic representation of a website, mobile app, or other digital interface that highlights the overall structure and layout of the design without going into specifics like colors, fonts, or images. A wireframe is a product outline that shows what interface elements will be present on important pages. | ||
|
|
||
| Wireframes are used to: | ||
| </p> | ||
| <ul> | ||
|
|
||
| <li>Structural Planning</li> | ||
| <li>User Flow</li> | ||
| <li>Communication</li> | ||
|
|
||
| </ul> | ||
| <a href="pages/purpose_wireframe.html">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="images/image_git.png" alt="branch in git" id="branch-image"/> | ||
| <h2>Branch in Git</h2> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code. | ||
| </p> | ||
| <a href="">Read more</a> | ||
| <p> | ||
| Common Reasons to Create a Branch: | ||
| </p> | ||
| <ul> | ||
| <li>Developing a new feature</li> | ||
| <li>Fixing a bug</li> | ||
| <li>Experimenting with ideas</li> | ||
| </ul> | ||
|
|
||
| <a href="pages/branch_git.html">Read more</a> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| Contact: <a href="mailto:[email protected]">[email protected]</a> | ||
| copyright © 2026 Yonas Gebre. All rights reserved. | ||
| </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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta name="description" content="This article explains the concept of branches in Git, their purpose, and how to use them effectively in your development workflow." /> | ||
|
|
||
| </head> | ||
| <body> | ||
| <header> | ||
| <h1>Branch in Git</h1> | ||
| </header> | ||
| </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,15 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta name="description" content="This article explains the purpose of README files in software development projects, highlighting their importance for communication, documentation, and project management. It covers the key components typically included in a README file and how they benefit both users and developers." /> | ||
| <title>Purpose of README file</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <h1>Purpose of README file</h1> | ||
| </header> | ||
| </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,15 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta name="description" content="This article explains the purpose of wireframes in the design and development process, highlighting their role in visualizing layout, structure, and user flow for websites and applications. It covers the benefits of using wireframes for communication, planning, and iteration in project development." /> | ||
| <title>Purpose of a wireframe</title> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <h1>Purpose of a wireframe</h1> | ||
| </header> | ||
| <p>A wireframe is a visual guide that represents the skeletal framework of a website or application. It outlines the layout, structure, and content placement without focusing on the final design elements like colors, images, or typography.</p> | ||
| </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
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.
@yonasdesbelegebre, how could you make the separation between blocks of code clearer?