Tribute Page Feedback/Help

Hi,
I have been working on my tribute page and would love a little bit of feedback on how to improve. Ideally I would like all the boxes to be the same width on a pc/laptop screen but I can’t seem to do it!

https://codepen.io/clare1950/pen/BaWzJQe

Any feedback greatly appreciated!

Clare

Hi,

I have now finished and fixed the issue! I would still really appreciate some feedback on the style and code please.

Thanks for your help!

Clare

I think your page looks good.

You have a couple of errors in you html.
Run your code through the html validator

You have some repetition in your css.

You repeat
text-align: center;

and

  border-style: double;
  border-width: medium;
  border-color: white;

a few times.

That would be good place to create a class and apply it to the html elements instead of trying to style each id.

.border-styles{
  border-style: double;
  border-width: medium;
  border-color: white;
}

Hope that helps!

Thanks! Yes I was thinking that I needed to streamline the code a little bit and creating a class makes sense!

i don’t have experience with html but i looked at your webpage and i think it looks great. you did really well :))

Thanks! It is my first page so I am happy!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.