First of all, I like what you did with your Tribute page. But, I got a few comments:
You have used photocap for two images id on your page, which is not correct. If you are going to use the same style for several items on your page. You should be using class instead of id. So, id must be unique.
Your article part is missing the header h2-h6, it’s not the best practice using article tags in this way.
Your tribute page’s HTML is having several errors and warnings in W3C validations, you may want to check it too. Here is the link for the W3C validator, you should copy&paste your HTML code for validation. The tool is handy; you should consider using it. (This applies for both of your pages)
Sorry, I forgot to mention that you should ignore those errors since you are working on codepen and copy&pasting your code from there. You should ignore the first warning and the first two errors of the validation.
Your pages look good @LukePixel. Some things to revisit;
Use the W3C validator mentioned in the previous post. tribute page
When using codepen it only expects the code you’d put within the <body> </body> tags in HTML. (No need to include the body tags). For anything you want to add to <head> click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
The link to your font would go in the box labeled ‘Stuff for <head>’
Mentioning because codepen provides the boilerplate for you. And while you may copy/paste from another source into codepen there are errors. Google ‘boilerplate template’
Your page passes 9/10 user stories.
Perhaps when you were cleaning up duplicate id's you removed one that the user stories require.
Don’t use the <br> element to force spacing. Use margin and/or padding in CSS.
The font you’re using ‘The Girl Next Door’ only has one style (one weight) that’s why nothing happens when you give it a font weight of 900. Look at the Roboto font that you link to (but you only linked to a font weight of 300, norm is 400) and you’ll see there are various weights you can link to and use.
Make the cursor a pointer when hovering over the submit button