-
-
Notifications
You must be signed in to change notification settings - Fork 502
Manchester | 26-ITP-May | Yee Man Tsang | Sprint 2 | Wireframe to Web Code #1349
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
Changes from 4 commits
2af122a
7dfbf5b
4466770
dec48eb
a57c081
e366ccd
21d7708
c06f400
0d0fc95
10ff6b8
746f7a9
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 |
|---|---|---|
|
|
@@ -7,27 +7,53 @@ | |
| <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> | ||
| <div id="wrapper"> | ||
| <header> | ||
| <h1>Web Development Foundation</h1> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| There are some frequently asked questions for beginner developers. | ||
| </p> | ||
| <a href="">Read more</a> | ||
| </article> | ||
| </main> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <div class="image-wrapper"> | ||
| <img src="https://cdn.iconscout.com/icon/free/png-512/free-readme-logo-icon-svg-download-png-3029134.png" alt="" /> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should the alt attribute in these images be empty?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for your reminder and it has been modified. |
||
| </div> | ||
| <h2>1. What is the purpose of a README file?</h2> | ||
| <p> | ||
| README file is the foundation document which ask user to Read Me First before doing anything in the project. It provides some concept explanation or basic requirements that user have to know. Sometimes it mentions contributin, licensing details and guideline for other developers who wants to contribute. | ||
| </p> | ||
| <a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read more</a> | ||
| </article> | ||
| <article> | ||
| <div class="image-wrapper"> | ||
| <img src="https://cdn.iconscout.com/icon/premium/png-512-thumb/wireframe-icon-svg-download-png-10585798.png" alt="" /> | ||
| </div> | ||
| <h2>2. What is the purpose of a wireframe?</h2> | ||
| <p> | ||
| Wireframe is a blueprints which can help teams to visualize the layout, user flow and hierarchy before committing to the colour or final UI design. | ||
| </p> | ||
| <a href="https://www.orbitmedia.com/blog/7-reasons-to-wireframe/">Read more</a> | ||
| </article> | ||
| <article> | ||
| <div class="image-wrapper"> | ||
| <img src="https://cdn.iconscout.com/icon/premium/png-512-thumb/git-branch-icon-svg-download-png-10369479.png" alt="" /> | ||
| </div> | ||
| <h2>3. What is a branch in Git?</h2> | ||
| <p> | ||
| A branch is a copied workspace from the main development and developers can modify and fix on her/his own branch of project without messing the main development. | ||
| </p> | ||
| <a href="https://www.w3schools.com/GIT/git_branch.asp?remote=github">Read more</a> | ||
| </article> | ||
| </main> | ||
| </div> | ||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| </p> | ||
| <div id="wrapper"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is this wrapper div here doing?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for your reminder and it has been improved. |
||
| <p> | ||
| By Lin Tsang. This webpage serves as a test environment. Some images and media displayed on this site are sourced from external websites for demonstrative and educational purposes. All copyrights, trademarks, and intellectual property regarding these images remain the property of their respective owners. https://iconscout.com/ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you sure this footer is fixed to the bottom of the viewport?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for your reminder and it has been fixed. |
||
|
|
||
| </p> | ||
| </div> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
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.
What is the purpose of this wrapper div?
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.
Thanks for your reminder and it has been improved.