Hi, everyone!
I’m getting starting in CSS and I would appreciate your help with your opinion about my work.
Hi, everyone!
I’m getting starting in CSS and I would appreciate your help with your opinion about my work.
Hi @flavio_oliveira and welcome to the community
Well done! Here are some ideas to make the code a bit better:
border-bottom: 10px dotted purple;
. If you don’t want the line to go all the way across, you could also add width: 750px
to make the title (and its border shorter).<h2>
tag.<li>
they should be wrapped inside <ul>
(or <ol>
) . No need for the <div>
.<a>
).Example for the HTML of the last part:
<h2>Contact information</h2>
<ul>
<li>Email:
<a href="mailto:jane@example.com">jane@example.com</a>
</li>
<li>Web:
<a href="http://example.com">http://example.com</a>
</li>
<li>Tel: 123 45678</li>
</ul>
I hope that gives you some ideas for improvements.
If you have any questions, feel free to ask.
Have a nice day,
Michael