TCA cycle technical documentation page - feedback appreciated

Would love some feedback on this technical documentation challenge from the responsive web design course.

https://codepen.io/bdurrant91/pen/jObRZwL

Many thanks!

Page looks good @bdurrant91. Some things to revisit;

  • Run your HTML code through the W3C validator.
    • There are coding errors you should address.
    • You can ignore the warnings. They are only telling you how to make your page more semantic.

Side note;

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element 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.
    • Mentioning mainly because you put the test script into head. If you do this locally and bring it up in a browser you’d never see the test script. That’s because it’s JS and it should be right before the closing body tag.
1 Like

Thank you I’ll have a look over these points!