Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

PeterTheDeveloper
Copy link

No description provided.

<input id="name" type="text" value="" name="name">
</div>

<div style="float:left;">
Copy link
Collaborator

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.

  1. No reason to have inline styling here.
  2. No use of floats for layout.


</section>

<section class="q4">
Copy link
Collaborator

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>
Copy link
Collaborator

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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Each of these radio inputs 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.

@ROgbonna1
Copy link
Collaborator

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants