Thank yoou for your time!
Hi @das.serban
Very well done.
I have only some small remarks:
- The last
<br>
inside the<address>
es can be omitted, because the end tag automatically breaks the line. - As you can see the date after the first address isnβt aligned to the right side. The reason is that
<time>
is an inline element andtext-align: right;
has therefore no effect. You should wrap<time>
with<p>
(which is a block element) and put the class on that. - The links are missing title attributes.
- βEsq.β is the title of the person and should therefore also be inside
<cite>
.
As you can see only minor things. Everything else is perfect.
I hope that helps,
Michael
Thank you so much for your feedback!
1 Like