completed exercises week-3#56
Conversation
Merge exercises done in other branches to master branch
|
Hi @havvarslan. This looks pretty good :). For exercise 8 ("advanced selectors"), the idea is that you use child selectors and other more complex CSS selectors. So, for example, rather than defining a style for |
|
There is also a bit of an issue with the "semantic HTML" part of exercise 29 ( |
tekul
left a comment
There was a problem hiding this comment.
Good work Havva! Keep it up. It looks like you understand most of the concepts we've seen so far. Watch out for cut and paste errors, revise the "semantic html" stuff and ask if you have any questions there. Also try to be methodical about committing work to git as you complete it. This makes it easier to keep track of what you're working on and also to review your previous work if you want to quickly find what you did for a past exercise.
| <!-- Add a label here --> | ||
| <input type="text" name="q" /> | ||
| <label for="search">Search on Google</label> | ||
| <input id="search" type="text" name="uid" /> |
There was a problem hiding this comment.
The name of the field seems to have changed here from q to uid?
| <br /> | ||
| <label> | ||
| <input type="checkbox" name="dietary" value="en" /> | ||
| Gluten Free |
There was a problem hiding this comment.
The value attributes here should match the different dietary selections. It looks like you copied them from the language example 🙂 .
No description provided.