Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 500
London | 26-ITP-May | Vito Moratti | Sprint 2 | Feature/Wireframe#1397
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
998b7d2ba184019c2ee9a4c825188c176e04a736cac3640cfbf67e815d58e2836bf252c41d70c874f8467139bdaFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,33 +1,64 @@ | ||
| <!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> | ||
| <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 page will show you the purpose of README file, the purpose of | ||
| Wireframe and what is branch in Git. It will include images and links to read more about each topic. | ||
| </p> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.jpg" alt="an image showing an example of a README file" /> | ||
| <h2> | ||
| What is the purpose of a README file? | ||
| </h2> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| A README file is the foundational documentation | ||
| for a software, dataset, or coding project. | ||
| It serves as a project's "front door," designed to help users quickly understand what the project does, | ||
| how to install and use it, and how to contribute | ||
| </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> | ||
| <a href="https://en.wikipedia.org/wiki/README">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="wireframe.jpg" alt="an image showing a hand drawn sketch of what a wireframe looks like" class="wireframe-image"/> | ||
| <h2>What is a Wireframe?</h2> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| A wireframe is a visual guide that represents the skeletal framework of a website or application. | ||
| It outlines the layout, content, and functionality of a page before any design or coding is done. | ||
| </p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
| <a href="https://en.wikipedia.org/wiki/Wireframe">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="branch-image.jpg" alt="an image showing a diagram of a Git branch" class="article-image" /> | ||
| <h2>What is a Branch in Git?</h2> | ||
| <p> | ||
| A branch in Git is a lightweight movable pointer to a commit. | ||
| It allows you to diverge from the mainline of development and work on features, experiments, or bug fixes | ||
| without affecting the main codebase. | ||
| </p> | ||
| <a | ||
| href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell#:~:text=A%20branch%20in%20Git%20is,Note">Read | ||
| more</a> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| Made by Vito. | ||
| </p><!--adding a comment to test the push and pull request, because so far | ||
| it is not working at all, adding another comment--> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.
@vmoratti, compare the header with the main section of the page. Does the alignment look intentional? What CSS change might help align them?
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.
I made adjustments. The header section is centered now.