My tribute page review please

1 Like

@sanikamal Great work! You used bootstrap well. I noticed you used some inline styles in your HTML, <b> and <em> elements. It’s better to put styling in your CSS as discussed here: https://www.thoughtco.com/avoid-inline-styles-for-css-3466846.

Here’s a site to help with color schemes, in case you want to add some color: http://paletton.com/.

Nothing else stands out to me that needs to change!

You have one syntax error in your CSS section. You have the following.

body{
  margin-top=50px;
}

The = should be : like below.

body{
  margin-top:50px;
}
1 Like

Thank u sir for pointing out me the error.