This comes up a lot in the forum where people will replicate the sample project but the goal of these projects is to build something different from the sample.
I understand that it is difficult to build your first project but you will learn a lot more in the process if you don’t duplicate the sample.
Something to keep in mind for the future.
Here are my thoughts on your project
I would review the lesson on giving links meaningful names.
wikipedia page is not that accessible.
In codepen, you don’t need to include the doctype, html and head tags.
That is already built into codepen.
Codepen also has a formatting tool.
Properly formatted code will make your code more readable.
Hi @jwilkins.oboe first of all, thank you for your helpful and useful feedback - it’s appreciated.
I have a few questions:
The CSS and HTML were apparently OK with respect to the analysis function. Do you see anything I could have done to improve the code in terms of quality / best practice.
Do you think I should redo it with my own ‘style’?
You still haven’t fixed the accessibility issue with the wikipedia page link.
Accessibility is important so I would review that lesson I mentioned earlier.
You also still haven’t formatted your code.
It is important to properly format your code so it makes it easier for other developers to read it.
Stuff like this is not good practice.
<ul>
<li><strong>1914</strong> - Born in Cresco, Iowa</li>
<li><strong>1914</strong> - Born in Cresco, Iowa</li>
<li><strong>1914</strong> - Born in Cresco, Iowa</li>
</ul>
I updated my tribute page. Whilst it adheres to the requirements checklist, it’s not very interestingly designed and I struggle with inspiration. From a code perspective, is this profile better?
Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in the HTML editor. (No need to include the body tags). For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
For instance, links to fonts go in the box labeled ‘Stuff for <head>’