Very nice work!
I would suggest to organize the years and bold them like in the example CodePen - for instance
1986 - bought XXX 1995 - lorem ipstur
or
24 Aug 2011 : Steve Jobs resigns as CEO of Apple, with the words āI
have always said if there ever came a day when I could no longer meet my
duties and expectations as Appleās CEO, I would be the first to let you
know. Unfortunately, that day has come.ā Tim Cook becomes Apple CEO
But thatās just my opinion.
You may also use some colors if you want.
Great work.
I like your tribute page, well done! Just a few tips. When I click on your link written and coded by Romina, it does not go anywhere. And I couldnāt find any external link on your page, for example for Wikipedia. And I couldnāt view your page in full page mode, message is: The owner of this Pen needs to verify their email address to enable Full Page View. Continue your work, weāll be an experts one day
Hi @anima17. Thanks for posting your project! Youāve made a nice start. Itās very simple and easy to read. Some feedback:
1: You have a lot of unnecessary <div>s. You only need to put things in a <div> if you want to use a .class or an #id to style everything in that section. If not, thereās no need for a div. It makes the code harder to read.
2: Related to that, you have a few <div>s that surround only one element. E.g.:
Get rid of the <div> and just put the class you want to use right in the heading:
<h3 class="text-center">Timeline Jobs'life:</h3>
3: You have some elements and classes that are used for styling purposes, such as <u>, <em> and .text-center. Try to avoid this. Instead use classes that provide meaning to the HTML, and use CSS to style those. E.g., instead of:
<h4><u><em>1986-1996 NeXT Pixar and wilderness</em></u></h4>
consider this:
<h4 class="biography-heading">1986-1996 NeXT Pixar and wilderness</h4>