-
-
Notifications
You must be signed in to change notification settings - Fork 382
London | 25-ITP-Jan | Oussama Mouggal | Sprint 1| Wireframe #1005
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
base: main
Are you sure you want to change the base?
Changes from all commits
0a56ce9
ba2adca
f35b9aa
286e5db
d7062c1
1833cd4
805dea8
1ea6b67
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,23 +10,43 @@ | |
| <header> | ||
| <h1>Wireframe</h1> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| This is an article explaining the wireframe structure of a webpage. | ||
| </p> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.svg" alt="" /> | ||
| <h2>Title</h2> | ||
| <img src="https://markdown.land/wp-content/uploads/2022/01/VSCode-markdown-preview-1024x470.png" alt="Readme file picture" /> | ||
| <h2>What is the purpose of a Readme file?</h2> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| A Readme file serves as a guide for users and developers, providing | ||
| essential information about a project, including its purpose, | ||
| installation instructions, usage guidelines, and contribution | ||
| protocols. | ||
| </p> | ||
| <a href="">Read more</a> | ||
| <a href="https://www.reddit.com/r/cs50/comments/x8965j/what_is_the_purpose_of_readme/">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="https://images.edrawsoft.com/articles/wireframe/wireframe-1.jpg" alt="Wireframe picture" /> | ||
| <h2>What is the purpose of a wireframe? | ||
| </h2> | ||
| <p> | ||
| The purpose of a wireframe is to provide a visual guide that represents the skeletal framework of a website or application, helping to plan layout and functionality. | ||
| </p> | ||
| <a href="https://balsamiq.com/blog/what-are-wireframes/">Read more</a> | ||
| </article> | ||
| <article> | ||
| <img src="https://git-scm.com/images/logos/downloads/Git-Logo-2Color.png" alt="Git logo" /> | ||
| <h2>What is a branch in Git? | ||
| </h2> | ||
|
Comment on lines
+39
to
+40
|
||
| <p> | ||
| A branch in Git is a separate line of development that allows multiple people to work on different features or fixes simultaneously without affecting the main codebase. | ||
| </p> | ||
| <a href="https://medium.com/@jacoblogan98/understanding-git-branching-5d01f3dda541">Read more</a> | ||
| </article> | ||
| </main> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| Codeyourfuture Jan26 - Wireframe assignment | ||
| </p> | ||
| </footer> | ||
| </body> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,7 +51,11 @@ main { | |
| } | ||
| footer { | ||
| position: fixed; | ||
| left: 0; | ||
| bottom: 0; | ||
| width: 100%; | ||
| background-color: #4b3a3a; | ||
|
||
| color: white; | ||
|
||
| text-align: center; | ||
|
Comment on lines
53
to
59
|
||
| } | ||
| /* ====== Articles Grid Layout ==== | ||
|
|
||
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.
The closing h2 tag is on a separate line, which is inconsistent with the formatting of other h2 elements in the file (see line 19 and line 39).