Hey Everyone I just polished off my tribute page and would appreciate any feedback you might have.
1 Like
Great start Tyler! A few things to consider:
- Try and keep all styles in the CSS. There are a few places where you created “inline” styles to center things. Try creating a reusable class with
.text-center{ text-align: center}
and just add that class to any text item you want to be centered. - Try avoiding the
<br />
tags for creating extra space. Instead, try adding amargin-bottom
to your<li>
tags in order to create that space. - The
<b>
tag is probably fine - but generally<strong>
or<em>
is preferred because the markup of these two tags carries more semantic meaning. - Instead of splitting his quote up into two
<h2>
tags, try using a<blockquote>
tag. You can achieve the same look if you add a class and style through CSS.
Keep going! Looks like you are having fun. This is exactly the kind of stuff I did when I got started 7 years ago
Hey Tyler,
You did great job, keep it up and enjoy!