here is a link to my tribute page https://codepen.io/andrewant/pen/jrzWPL
I would appreciate feedback on how this page could be improved upon in the future
This is a solid effort. The only room for improvement I see is to not use <b> tags, but instead <span> tags that you add a class to. So
<ul class="list-unstyled table-inverse col-xs-12 col-md-6">
<li><b>1791</b> - Born on December 26 in London</li>
would be
<ul class="list-unstyled table-inverse col-xs-12 col-md-6">
<li><span class="date">1791</span> - Born on December 26 in London</li>
That way you could go into the CSS and make more detailed adjustments to the look of your date rather than just bold.
.date {
font-weight: 500;
color: #ccc;
font-size; 1.1em;
/* or whatever */
]
Great work ![]()