generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 428
London | 26-ITP-Jan | Boualem Larbi Djebbour | Sprint 1 | wireframe #1158
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
djebsoft
wants to merge
30
commits into
CodeYourFuture:main
Choose a base branch
from
djebsoft: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.
+77
−82
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
d25e32f
Revise wireframe HTML content and headings
djebsoft 47093f6
Update wireframe image in index.html
djebsoft b42ca6e
Update images and text in index.html
djebsoft 9456100
Update footer with creator information
djebsoft 7bd7e9c
Fix HTML structure and update links with target attribute
djebsoft 06e6b23
Refactor CSS by removing comments and updating styles
djebsoft 2796607
Merge branch 'CodeYourFuture:main' into feature/wireframe
djebsoft 253277e
Refactor HTML structure and fix tags (indentation)
djebsoft 5d3d442
Fix HTML tags and update article sections
djebsoft 9e75b35
Remove unnecessary section tag from index.html
djebsoft a263d25
inhanced indentation
djebsoft 3a31ce3
Fix CSS formatting by adding closing brace
djebsoft 004cf3e
Increase padding in footer style
djebsoft 23b035d
Refactor CSS grid layout for articles section
djebsoft d34f2e0
Remove inline styles from images in index.html
djebsoft 9700ddf
Remove extra newline before closing html tag
djebsoft 10e0615
Refactor CSS with custom properties and layout adjustments
djebsoft 6de8c3a
Add styles for anchor tags and images
djebsoft a4363f3
Adjust image and SVG dimensions in style.css
djebsoft 5bc4b77
Change image and SVG width to 100%
djebsoft f06d3e7
Refactor header styles and adjust image dimensions
djebsoft 8d71317
Update container size and main padding
djebsoft ea45722
Adjust image size and header padding in CSS
djebsoft 316fe0e
Adjust padding and grid settings in style.css
djebsoft 1412179
Add files via upload
djebsoft 12b772d
Merge branch 'CodeYourFuture:main' into feature/wireframe
djebsoft 0910808
Update image sources in index.html
djebsoft f981a06
Add left padding to article element
djebsoft 9f3f43e
Fix typos
djebsoft 136fbe0
Fix CSS variable and update image styles
djebsoft 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.
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,46 @@ | ||
| <!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> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| </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> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Wireframe task</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
|
|
||
| <body> | ||
| <header> | ||
| <h1>Wireframe task</h1> | ||
| <p>what is wireframe, readme file and git branch ?</p> | ||
| </header> | ||
|
|
||
| <main> | ||
| <article> | ||
| <img src="readme_image.png" alt=""/> | ||
| <h2>Readme File</h2> | ||
| <p>a readme file demonstrates what the project does, why it is useful and how can a user get started with it.</p> | ||
| <a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes" | ||
| target="_self">Read more</a> | ||
| </article> | ||
|
|
||
| <article> | ||
| <img src="wireframe_image.png" alt=""/> | ||
| <h2>wireframe</h2> | ||
| <p>a wireframe is a simple visual guide (blue print) that represents the skeletal framework of a webpage.</p> | ||
| <a href="https://github.com/dwyl/learn-wireframing/blob/master/README.md" target="_self">Read more</a> | ||
| </article> | ||
|
|
||
| <article> | ||
| <img src="branch_image.png" alt=""/> | ||
| <h2>git branch</h2> | ||
| <p>a git branch is a separate independent copy of the source code within a version control system.</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="_self">Read more</a> | ||
| </article> | ||
| </main> | ||
|
|
||
| <footer> | ||
| <p>created by CYF with some changes made by Djebsoft</p> | ||
| </footer> | ||
| </body> | ||
| </html> |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
Uh oh!
There was an error while loading. Please reload this page.