forked from CodeYourFuture/Module-Onboarding
-
Notifications
You must be signed in to change notification settings - Fork 15
ITP-2025-1 | Tam Huynh | Week 2 | Form-Controls #20
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
tam-fr
wants to merge
8
commits into
HackYourFutureBelgium:main
Choose a base branch
from
tam-fr:main
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.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
c1a9a63
add forms.
tam-fr e5f2da6
information deleted
tam-fr 1050113
add images and articles
tam-fr 686469a
Merge branch 'main' of https://github.com/tam-fr/Module-Onboarding
tam-fr 0713b17
add link
tam-fr 84df316
add link
tam-fr 20f4e68
add comment
tam-fr a4dc304
add modification
tam-fr 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
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 |
|---|---|---|
|
|
@@ -17,11 +17,42 @@ <h1>Product Pick</h1> | |
| <!-- | ||
| try writing out the requirements first as comments | ||
| this will also help you fill in your PR message later--> | ||
| <label for="name">What's your name?</label> | ||
| <br> | ||
| <input type="text" name="text" id="name" minlength="3" required value="yourName"> | ||
| <br> | ||
|
|
||
|
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. Dont follow the good practices in the code style |
||
| <label for="mail">What's your email?</label> | ||
| <br> | ||
| <input type="email" id="mail" name="mail" required placeholder="[email protected]"> | ||
|
|
||
| <p>What color do you like?</p> | ||
|
|
||
| <label for="black">black</label> | ||
| <input type="radio" id="black" name="answer" value="black"> | ||
| <br> | ||
| <label for="white">white</label> | ||
| <input type="radio" id="white" name="answer" value="white"> | ||
| <br> | ||
| <label for="blue">blue</label> | ||
| <input type="radio" id="blue" name="answer" value="blue"> | ||
| <br> | ||
|
|
||
| <label for="size">What's size?</label> | ||
| <select id="size" name="size"> | ||
| <option value="xs">XS</option> | ||
| <option value="s">S</option> | ||
| <option value="m">M</option> | ||
| <option value="l">L</option> | ||
| <option value="xl">XL</option> | ||
| <option value="xxl">XXL</option> | ||
| </select> | ||
|
|
||
| </form> | ||
| </main> | ||
| <footer> | ||
| <!-- change to your name--> | ||
| <h2>By HOMEWORK SOLUTION</h2> | ||
| <h2>By Tam</h2> | ||
| </footer> | ||
| </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
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.
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,58 @@ | ||
| <!DOCTYPE html> | ||
| <!doctype html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Wireframe</title> | ||
| <title>Intro to Web Development</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <h1>Wireframe</h1> | ||
| <h1>Web Development for Dummies</h1> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| Explanation of the purpose of a README file, a wireframe, and what a Git branch is. These three elements are | ||
| fundamental to structuring, planning, and collaborating effectively in software development. | ||
| </p> | ||
| </header> | ||
| <main> | ||
| <article> | ||
| <img src="placeholder.svg" alt="" /> | ||
| <h2>Title</h2> | ||
| <img src="images/readme-github1.jpg" alt="image of a symbol from a readme file" /> | ||
| <h2>What is the purpose of a README file?</h2> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
| voluptates. Quisquam, voluptates. | ||
| Including a clear and well-structured README is considered a best practice as it helps others quickly | ||
| understand the project, encourages adoption or contributions, and makes maintenance easier for everyone | ||
| involved. | ||
| </p> | ||
| <a href="">Read more</a> | ||
| <a href="https://www.makeareadme.com/">Read more</a> | ||
| </article> | ||
|
|
||
| <article> | ||
| <img src="images/wireframe1.png" alt="image of a wireframe" /> | ||
| <h2>What is the purpose of a wireframe?</h2> | ||
| <p> | ||
| The purpose of a wireframe is to visually map out the basic structure and functionality of a website, app, or | ||
| digital product before adding any detailed design elements or content. Wireframes focus on layout, user flow, | ||
| and placement of key elements like menus, buttons, and content sections, helping teams to plan and refine | ||
| usability, navigation, and information architecture at an early stage. | ||
| </p> | ||
| <a href="https://www.experienceux.co.uk/faqs/what-is-wireframing/">Read more</a> | ||
| </article> | ||
|
|
||
| <article> | ||
| <img src="images/branchGit.jpeg" alt="image of a example of a git branch" /> | ||
| <h2>What is a branch in Git?</h2> | ||
| <p> | ||
| A branch in Git is an independent line of development that allows you to work on new features, bug fixes, or | ||
| experiments in isolation from the main code base (usually the main or master branch). It works like a parallel | ||
| workspace where changes can be made without affecting other branches, enabling multiple streams of work to | ||
| happen simultaneously. | ||
| </p> | ||
| <a href="https://www.w3schools.com/git/git_branch.asp">Read more</a> | ||
| </article> | ||
| </main> | ||
|
|
||
| <footer> | ||
| <p> | ||
| This is the default, provided code and no changes have been made yet. | ||
| </p> | ||
| <p>Made with love, Tam.</p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
| </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
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
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.
the <br> is not a group tag, I recommend you to use
<div>or<p>