-
-
Notifications
You must be signed in to change notification settings - Fork 501
Cape Town | May-ITP-26 | Enice Mutanda | Sprint 2 | WireFrame #1359
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
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
07e8ff2
Added index.html
Enice-Codes df899bd
Fixed trailing slashes
Enice-Codes 7da6f86
Merge branch 'CodeYourFuture:main' into Form_Control
Enice-Codes 649343f
add style layout with css
Enice-Codes aff984a
changed name of images
Enice-Codes 0582aff
Update wireframe content and alt text
Enice-Codes 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,99 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="utf-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
| <meta charset="utf-8"> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| <title>My form exercise</title> | ||
| <meta name="description" content="" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
| <meta name="description" content=""> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| <link rel="stylesheet" href="style.css" > | ||
| </head> | ||
|
|
||
| <body> | ||
| <center> | ||
| <header> | ||
| <h1>Product Pick</h1> | ||
| <h1>Customer Confirmation Form </h1> | ||
| </header> | ||
| </center> | ||
|
|
||
| <main> | ||
| <form> | ||
| <!-- write your html here--> | ||
| <!-- | ||
| try writing out the requirements first as comments | ||
| this will also help you fill in your PR message later--> | ||
| <form action="results.html" method="GET"> | ||
| <div> | ||
| <label for="name">Customer Name:</label> | ||
| <input type="text" id="name" name="name" required placeholder="enter your name ."/> | ||
| </div> | ||
|
|
||
| <div | ||
| <label for="email"> Email:</label> | ||
| <input type="email" id="email" name="email" required placeholder="@gmail.com" /> | ||
| </div> | ||
|
|
||
| <div> | ||
| <label for="Size"> Size: </label> | ||
| <select id="size" name="size"> | ||
| <option value="xsmall">xSmall</option> | ||
| <option value="small">Small</option> | ||
| <option value="medium">Medium</option> | ||
| <option value="large">Large</option> | ||
| <option value="xlarge">xLarge</option> | ||
| <option value="xxlarge">xxLarge</option> | ||
|
|
||
| </div> | ||
| </select> | ||
|
|
||
| <div> | ||
|
|
||
| <label for="phone"> Phone Number:</label> | ||
| <input type="tel" id="phone" name="phone" required /> | ||
| </div> | ||
|
|
||
| <div> | ||
| <label for="address"> Address: </label> | ||
| <input type="text" id="address" name="address" required /> | ||
| </div> | ||
|
|
||
| <div> | ||
| <label for="color"> Color:</label> | ||
| <select id="color" name="color"> | ||
| <option value="red">yellow</option> | ||
| <option value="blue">black</option> | ||
| <option value="green">Green</option> | ||
| </select> | ||
| </div> | ||
|
|
||
| <fieldset> | ||
|
|
||
| <legend> | ||
| Gender | ||
| </legend> | ||
|
|
||
| <div> | ||
| <label for="gender" value="male">Male</label> | ||
| <input type="radio" for="gender" id="male"></input> | ||
| </div> | ||
|
|
||
| <div> | ||
| <label for="gender" value="female">Female</label> | ||
| <input type="radio" for="gender" id="female"></input> | ||
| </div> | ||
|
|
||
| </fieldset> | ||
| <div> | ||
| <label for="comments">Additional Comments:</label> | ||
| <textarea id="comments" name="comments"></textarea> | ||
| </div> | ||
|
|
||
| <div> | ||
| <div class="form-button"> | ||
| <button type="submit">Submit</button> | ||
| <button type="reset">Reset</button> | ||
| </div> | ||
|
|
||
| </form> | ||
| </main> | ||
| <footer> | ||
| <!-- change to your name--> | ||
| <p>By HOMEWORK SOLUTION</p> | ||
| <!-- ENICE MUTANDA--> | ||
| <p>ENICE MUTANDA</p> | ||
| </footer> | ||
| </body> | ||
| </html> |
Empty file.
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 |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| h2 { | ||
| text-align: center; | ||
| color: #333; | ||
| font-size: 24px; | ||
| } | ||
| body { | ||
| font-family: Arial, sans-serif; | ||
| background-color: #c597b0; | ||
| margin: 0; | ||
| padding: 20px; | ||
| } | ||
| header { | ||
| background-color: #c597b0; | ||
| color: rgb(53, 50, 50); | ||
| padding: 5px 0; | ||
| } | ||
| form { | ||
| background-color: #dd9ad2; | ||
| padding: 20px; | ||
| border-radius: 10px; | ||
| max-width: 500px; | ||
| margin: auto; | ||
| } |
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
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
Oops, something went wrong.
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.
There are two
mainselectors in this file. Consider merging the properties from both selectors into a singlemainrule to make them easier to find and maintain.