Hi!!! Done another task from MDN, now it is Typesetting a community school homepage
Want to see your criticism! Thank you!
Hi!!! Done another task from MDN, now it is Typesetting a community school homepage
Want to see your criticism! Thank you!
Hi @QuebecNova
Your repo link gives a 404. Is it set to “private”?
Could you also activate “Github Pages” and post the link to it like you did for the “planet exercise”?
For this exercise it’s important to see the end product to give good feedback.
Cheers,
Michael
Fixed 404.
Added files to GP.
Github Pages
Thank you!
I see the repo now, but your GP link shows the RWD exercise.
You can activate GP for an individual repo. I seems that you use your account GP for one exercise at the time.
https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site
Sorry for waste your time, i confused. I have a lot of finished tasks, here i mixed up two of them…
All fixed. Now you can check. Thank you!!
No need to be sorry. Now I see your page.
I need to go to work now, but will look at your code later.
As promised I’m back with some comments
Amazing work on this exercise!
I like the link and nav states and everything looks well balanced.
It seems you just misunderstood this task:
Give the first paragraph after each heading in the
<section>
a little bit of text-indentation, say 20px.
It’s not about the top padding but about left indention:
Have a nice day,
Michael
Do you know which CSS property could be used to achieve this?
I will write this, right?
section h2 + p::first-letter {
padding-left: 20px;
}
I updated it on Github Pages, seems to work properly.
Thank you again!
Yes, this works.
There’s even an simpler solution by using text-indent which was specifically designed for this case. It automatically indents just the first line of text.
section h2 + p {
text-indent: 20px;
}