added zakaria-touzri.txt#1
Conversation
|
|
||
| 5. Name two tags that have required attributes | ||
|
|
||
| section and h2 |
There was a problem hiding this comment.
Section and h2 do not have required attributes.
<a> however needs the href attribute and <img> needs the src attribute to function.
|
|
||
| 6. What do we put in the head of our HTML document? | ||
|
|
||
| <head> blablabla </head> |
There was a problem hiding this comment.
🙂 the head of the HTML contains the metadata for it. Things like the title of the HTML file, links to its CSS file, what kind of characters we want to use ...
|
|
||
| 8. What elements can I add an id to? | ||
|
|
||
| sections (any that's repeatable and that we want different from others) |
There was a problem hiding this comment.
Yes, we can also add it to any element we want to make unique
|
|
||
| 30. How do I write a comment in CSS? | ||
|
|
||
| <!-- --> |
There was a problem hiding this comment.
<!-- --> is for commenting HTML.
/* */ is used to comment CSS
| - [ ] Clone this repo | ||
| - [ ] Create a branch `git checkout -b 'firstName-lastName'` | ||
| - [ ] Add a file to the project called `yourFirstName-yourLastName`.txt. This should contain the link to your completed codepen from part 2 as well as the review questions/answers | ||
| - [x] Create your own version of this repo - Fork |
There was a problem hiding this comment.
Awesome job keeping track of your progress 👍🏽
|
Awesome job Zakaria. Appreciate the fact that you are keep track of your progress in the Readme file. |
added zakaria-touzri.txt where there are the codepen link + the Q&A