-
Notifications
You must be signed in to change notification settings - Fork 34
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
completed lab #7
base: main
Are you sure you want to change the base?
completed lab #7
Conversation
<input id="name" type="text" value="" name="name"> | ||
</div> | ||
|
||
<div style="float:left;"> |
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.
Gotta get rid of this.
- No reason to have inline styling here.
- No use of floats for layout.
|
||
</section> | ||
|
||
<section class="q4"> |
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.
You're using <section>
s for grouping and <div>
s for headers. I want you to use <fieldset>s
and <legend>
s instead.
|
||
</section> | ||
<section class="q5"> | ||
<text style="display:block;">This my last question. Whats your sign ?</text> |
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.
Get rid of this inline styling here.
<h4> Name this anime;<p>This anime is about some dude forcing a kid to eat his hair.</p></h4> | ||
|
||
</div> | ||
<input type="radio" name="" value="always">Made In Abyss |
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.
Each of these radio input
s needs a label. Example...
<input type="radio" name="anime" value="abyss" id="abyss">
<label for="abyss">Made In Abyss</label>
Having appropriate values for name
and value
are super important here.
You got some work to do here, Peter. But forms are so important that it is worth it. Make these changes and push back up ASAP. |
No description provided.